删除数组中的第一个和最后一个元素

2022-08-30 04:46:50

如何删除数组中的第一个和最后一个元素?

例如:

var fruits = ["Banana", "Orange", "Apple", "Mango"];

预期输出数组:

["Orange", "Apple"]

答案 1
fruits.shift();  // Removes the first element from an array and returns only that element.
fruits.pop();    // Removes the last element from an array and returns only that element. 

查看数组的所有方法。


答案 2

创建一个 1 级深度的副本。

fruits.slice(1, -1)

放开原始阵列。

感谢@Tim指出拼写勘误表。