摘要: 注意:1.array的length不是只读的。可以从数组的末尾移出项或者向数组中添加新项。看下面例子: var colors = ["red","yellow","blue"];colors.length = 2;console.info(colors[2]);结果:undefined原因:将len 阅读全文
posted @ 2016-05-12 14:59 掉尾瓶 阅读(175) 评论(0) 推荐(0) 编辑