gpt4 book ai didi

javascript - 为什么使用 )( 在 Node.js REPL 中调用函数?

转载 作者:IT老高 更新时间:2023-10-28 13:14:49 24 4
gpt4 key购买 nike

为什么可以像这样在 JavaScript 中调用函数,用 node.js 测试:

~$ node
> function hi() { console.log("Hello, World!"); };
undefined
> hi
[Function: hi]
> hi()
Hello, World!
undefined
> hi)( // WTF?
Hello, World!
undefined
>

为什么最后一次调用 hi)( 有效?是 node.js 中的错误、V8 引擎中的错误、官方未定义的行为,还是对所有解释器都有效的 JavaScript?

最佳答案

这是由于 REPL 评估输入的方式,最终为:

(hi)()

添加了额外的括号to force it to be an Expression :

  // First we attempt to eval as expression with parens.
// This catches '{a : 1}' properly.
self.eval('(' + evalCmd + ')',
// ...

意图是将 {...} 视为 Object 文字/initialisers而不是作为 block .

var stmt = '{ "foo": "bar" }';
var expr = '(' + stmt + ')';

console.log(eval(expr)); // Object {foo: "bar"}
console.log(eval(stmt)); // SyntaxError: Unexpected token :

而且,正如 leesei 所提到的,这已在 0.11.x 中进行了更改,will just wrap { ... }而不是所有输入:

  if (/^\s*\{/.test(evalCmd) && /\}\s*$/.test(evalCmd)) {
// It's confusing for `{ a : 1 }` to be interpreted as a block
// statement rather than an object literal. So, we first try
// to wrap it in parentheses, so that it will be interpreted as
// an expression.
evalCmd = '(' + evalCmd + ')\n';
} else {
// otherwise we just append a \n so that it will be either
// terminated, or continued onto the next expression if it's an
// unexpected end of input.
evalCmd = evalCmd + '\n';
}

关于javascript - 为什么使用 )( 在 Node.js REPL 中调用函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19310788/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com