当length属性更改时,数组会更改其大小。数组怎么知道长度改变了?

时间:2016-08-10 07:53:45

标签: javascript arrays

var arr = [];
console.log(arr); //output: []

arr.length = 5;
console.log(arr); //output: [,,,,]

arr.length = 2;
console.log(arr);  //output: [,]

数组的length属性如何工作?数组如何知道属性已更改?

0 个答案:

没有答案