首页 > 代码库 > 数组的length属性不是只读的,你知道吗?

数组的length属性不是只读的,你知道吗?

数组的length属性不是只读的

var color=[red,blue,green];
color.length=2;
console.log(color);
// ["red", "blue"]

 

数组的length属性不是只读的,你知道吗?