答案 0 :(得分:0)
const arr = [1, 2, 3, 4, 5, 6, 7]
console.log(arr.unshift(0)) // method execution returns length of the new array
console.log('arr', arr);
答案 1 :(得分:0)
因为Array.unshift方法返回数组的长度
根据开发人员Mozilla
unshift()方法将一个或多个元素添加到数组的开头,并返回数组的新长度。