标签: javascript arrays
当我从数组中删除一个项目" test"时,关键字var indices = [0, 14, 22]; // indices where I want to insert 会导致数组变得不连续。 delete做了什么?
var indices = [0, 14, 22]; // indices where I want to insert
delete
答案 0 :(得分:-2)
JavaScript中的数组从0开始计算。delete test[1]删除了数组中的第二个对象。
delete test[1]