push() 方法接收任意数量的参数,并将它们添加到数组末尾,返回 数组的最新长度。
pop() 方法则用于删除数组的最后一项,同时减少数 组的 length 值,返回被删除的项
let colors = new Array(); / / 创建一个 数组
let count = colors.push("red", "green"); / / 推入两项
alert(count); / / 把两个字符串推入数组末尾,将结果保存在变量 count 中(结果为 2 )。
count = colors.push("black"); / / 再推入一项
alert(count); / / 3
let item = colors.pop(); / / 取得最后一项
alert(item); / / b l a c k
alert(colors.length);
/ / 再推入另一个值,再把结果保存在 count 中。因为现在数组 中有3个元素,所以 push() 返回 3 。
/ /在调用 pop() 时,会返回数组的 最后一项,即字符串 "black" 。此时数组还有两个元素。
-
2.在遍历一个数组后把它分为不同的数组(仅做参考)