JavaScript 数组Array-unshift()方法
时间:2019-08-20 13:50:50 来源:igfitidea点击:
说明
Javascript 数组的 unshift()方法将一个或多个元素添加到数组的开头,并返回数组的新长度。
语法
array.unshift( element1, ..., elementN );
参数
element1,…,elementN—要添加到数组前面的元素。
返回值
返回新数组的长度。它在IE浏览器中返回undefined。
示例
console.log(array); // [4, 8, 16, 32] console.log(array.length); // 4 console.log(array.unshift(2)); // 5 // 在数组的开头添加一个新值。返回数组的长度 console.log(array); // [2, 4, 8, 16, 32] console.log(array.length); // 5