我splice
在嵌套的 for 循环中使用,遇到了我无法理解的行为。
var a = [0, 1, 2, 3, 4];
for (b in a) {
console.log(a);
for (c in a) {
console.log(c + '==' + a[c]);
if (c === "1")
a.splice(c, 1);
}
}
console.log(a);
它的输出很奇怪
[0, 1, 2, 3, 4]
"0==0"
"1==1"
"2==3" // why is index 2 referring to value 3 , whereas it should refer to 2
"3==4"
[0, 2, 3, 4]
"0==0"
"1==2"
"2==4" // index 2 referring to value 4 , whereas it should refer to 3
[0, 3, 4]
"0==0"
"1==3"
[0, 4]
我正在拼接索引 1,它正在跳过下一个元素。
为什么这种行为...
在这里结帐:http: //jsbin.com/isahoj/3/edit
编辑:
好的,我知道它在拼接之后会移动索引,但是我在执行 console.log() 之后调用 splice ... 那么它是如何更早拼接的呢?