摘要: 1 //push 向数组最后添加一项 2 var arr = ['one', 'two', 'three']; 3 arr.push("four"); 4 console.log(arr);//["one", "two", ... 阅读全文
posted @ 2014-12-26 13:40 李亚杰 阅读(141) 评论(0) 推荐(0) 编辑