dropRight - 从右开始删除数组元素

优质
小牛编辑
131浏览
2023-12-01

返回从右开始删除 n 个元素的新数组。

检查 n 是否小于给定数组的长度,并且使用 Array.slice() 来从右开始删除指定数量的元素。

const dropRight = (arr, n = 1) => arr.slice(0, -n);
dropRight([1, 2, 3]); // [1,2]
dropRight([1, 2, 3], 2); // [1]
dropRight([1, 2, 3], 42); // []