从数组中排除给定值。
使用 Array.filter() 创建一个不包括(使用!Array.includes())所有给定值的数组。
Array.filter()
!Array.includes()
(对于改变原始数组的代码片段,请参阅pull))
pull
const without = (arr, ...args) => arr.filter(v => !args.includes(v));
without([2, 1, 2, 3], 1, 2); // [3]