gpt4 book ai didi

javascript - ECMAScript 规范中的 `ExpressionNoIn` 是什么意思?

转载 作者:数据小太阳 更新时间:2023-10-29 06:06:15 24 4
gpt4 key购买 nike

我正在深入研究 for 循环并在 http://www.ecma-international.org/ecma-262/5.1/#sec-12.6.3 的规范中遇到 ExpressionNoIn

这是什么意思?

最佳答案

section 11.14 中有解释“逗号运算符 ( , )”:

Comma Operator ECMA Spec

*NoIn 具有相同的结构,只是 in 排除了 in 关键字的使用,第 11.8 节“关系运算符”:

Relational Operators ECMA Spec

规范说:

The "NoIn" variants are needed to avoid confusing the in operator in a relational expression with the in operator in a for statement.

As in 有两种用法:

for (var x in foo) { ... }

或者:

if ('x' in foo) { ... }

“NoIn”变体使得无法在 for 循环的第一个表达式中使用上面的 in 的第二个版本。所以,下面的代码是无效的:

for (y = 'x' in foo; y; y = false) { ... }

关于javascript - ECMAScript 规范中的 `ExpressionNoIn` 是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29309806/

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