SyntaxError: a declaration in the head of a for-of loop can't have an initializer
错误信息
SyntaxError: a declaration in the head of a for-of loop can't have an initializer (Firefox) SyntaxError: for-of loop variable declaration may not have an initializer. (Chrome)
错误类型
哪里出错了?
示例
非法的 for-of
循环形式
js
let iterable = [10, 20, 30];
for (let value = 50 of iterable) {
console.log(value);
}
// SyntaxError: a declaration in the head of a for-of loop can't
// have an initializer
合法的 for-of
循环形式
需要将初始化器 (value = 50
) 从for-of
循环的头部移除。或许你的本意是给每个值添加 50 的偏移量,在这种情况下,可以在循环体中进行添加。
js
let iterable = [10, 20, 30];
for (let value of iterable) {
value += 50;
console.log(value);
}
// 60
// 70
// 80
相关内容
for...of
for...in
– 在严格模式下也同样禁止使用初始化器 (SyntaxError: for-in loop head declarations may not have initializers)for
– 在迭代时允许定义初始化器