2019-06-01
描述
返回数组中不满足条件的元素。
提示
- 使用
Array.prototype.filter()
过滤出不满足条件的元素
代码
const reject = (pred, array) => array.filter((...args) => !pred(...args));
示例
返回奇数:
reject(x => x % 2 === 0, [1, 2, 3, 4, 5]); // [1, 3, 5]
返回长度小于 5 的单词:
reject(word => word.length > 4, ['Apple', 'Pear', 'Kiwi', 'Banana']); // ['Pear', 'Kiwi']