ネストされた for ループ内で作業していてsplice
、理解できない動作に遭遇しました。
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
編集:
わかりました、 splicing 後にインデックスをシフトすることは理解していますが、 console.log() を実行した後に splice を呼び出しています...では、以前にどのように接合されていますか?