本文介绍了为什么不从Javascript数组中删除更改其长度?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个数组:
data.Dealer.car[0]
data.Dealer.car[1]
data.Dealer.car[2]
如果我这样做:
alert(data.Dealer.car.length);
delete data.Dealer.car[1];
alert(data.Dealer.car.length);
每次给我相同的数量。删除的元素是否仍然存在?
It gives me the same count each time. Does the removed element still exist?
推荐答案
JavaScript数组不稀疏,如果你有一个0和一个2,那么元素1必须存在。这意味着长度
将为3。
JavaScript arrays aren't sparse, if you have a 0 and a 2, then element 1 must exist. Meaning the length
is going to be 3.
这篇关于为什么不从Javascript数组中删除更改其长度?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!