数组的length属性不是只读的
var color=[‘red‘,‘blue‘,‘green‘]; color.length=2; console.log(color); // ["red", "blue"]
数组的length属性不是只读的,你知道吗?
原文:http://www.cnblogs.com/zjy1017/p/7125703.html