get the common items between two arrays javascript with O(n) code example
Example: get common values from two arrays javascript
let intersection = arrA.filter(x => arrB.includes(x));
let intersection = arrA.filter(x => arrB.includes(x));