Files
30-seconds-of-code/test/symmetricDifferenceWith/symmetricDifferenceWith.js
2018-08-02 13:49:33 +03:00

6 lines
220 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;