一、push()
往数组的最后添加内容。有一个返回值:数组长度
二、unshift()
往数组的最前面添加内容。返回值:数组长度
三、pop()
移除数组的最后一个数据。返回值:被移除的数据信息。
四、shift()
移除数组的最前一位数据。返回值:被移除的数据信息。
小例子:
var attr=[‘1‘,‘2‘,‘3‘,‘4‘] //把数组中的4放到第一位,1放到最后一位 /*attr.pop()*/ //移除最后一位4,其返回值为4; attr.unshift(attr.pop()); /*attr.shift()*/ //移除最前一位1,其返回值为1; attr.pop(attr.shift());
时间: 2024-10-13 02:46:12