Files
30-seconds-of-code/test/symmetricDifferenceWith/symmetricDifferenceWith.js
2018-02-04 17:38:39 +02:00

5 lines
215 B
JavaScript

const symmetricDifferenceWith = (arr, val, comp) => [
...arr.filter(a => val.findIndex(b => comp(a, b)) === -1),
...val.filter(a => arr.findIndex(b => comp(a, b)) === -1)
];
module.exports = symmetricDifferenceWith;