2019-07-01
描述
对数组中的元素进行过滤,找出那些特殊的值。
提示
- 使用
Array.prototype.filter()
创建一个数组 - 使用
!Array.includes()
获数组中不存在的给定值 - 如果需要改变原始数组可参见 pull
代码
const without = (arr, ...args) => arr.filter(v => !args.includes(v));
示例
找出数组中不存在的值:
without([2, 1, 2, 3], 1, 2); // [3]