碎片時(shí)間學(xué)編程「299]:計(jì)算基于函數(shù)的數(shù)組差異

從比較器函數(shù)不返回的數(shù)組中過濾掉所有值為true 的值。
使用Array.prototype.filter()和Array.prototype.findIndex()方法找到合適的值。
省略最后一個(gè)參數(shù) comp以使用默認(rèn)的嚴(yán)格相等比較器。
JavaScript
const differenceWith = (arr, val, comp = (a, b) => a === b) => ?arr.filter(a => val.findIndex(b => comp(a, b)) === -1);
示例:
differenceWith( ?[1, 1.2, 1.5, 3, 0], ?[1.9, 3, 0], ?(a, b) => Math.round(a) === Math.round(b) ); // [1, 1.2] differenceWith([1, 1.2, 1.3], [1, 1.3, 1.5]); // [1.2]
更多內(nèi)容請(qǐng)?jiān)L問我的網(wǎng)站:https://www.icoderoad.com
標(biāo)簽: