📅  最后修改于: 2023-12-03 15:33:09.933000             🧑  作者: Mango
在Node.js中,shift()函数是数组方法之一。它从数组的开头移除第一个元素,并返回该元素的值。shift()会改变原数组,因此使用它会影响原始数组的值。
array.shift()
shift()函数没有任何参数。
shift()函数返回数组中移除的第一个元素的值。如果数组为空,则返回undefined。
const fruits = ["apple", "banana", "orange"];
const firstFruit = fruits.shift(); // 移除数组第一个元素
console.log(fruits); // ["banana", "orange"]
console.log(firstFruit); // "apple"
上面的例子中,我们创建了一个包含三种水果的数组。我们使用shift()函数移除了第一个元素,即“apple”。我们使用console.log()函数输出了修改后的数组和移除的元素值。