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

数组的length属性不是只读的

var color=['red','blue','green'];
color.length=2;
console.log(color);
// ["red", "blue"]
原文地址:https://www.cnblogs.com/zjy1017/p/7125703.html