shift() 方法用于把数组的第一个元素从其中删除,并返回第一个元素的值。
语法:
array.shift()
注意: 此方法改变数组的长度!
举例:
var arr = [1,2,3,4,5]; console.log(arr.shift()); console.log(arr);
输出: