2019-04-19
描述
从右边移除 n
个元素后返回一个新的数组。
提示
- 使用
Array.prototype.slice()
从右边移除指定个数的元素。
代码
const dropRight = (arr, n = 1) => arr.slice(0, -n);
示例
移除末尾 n
个元素:
dropRight([1, 2, 3]); // [1,2]
dropRight([1, 2, 3], 2); // [1]
dropRight([1, 2, 3], 42); // []