how to find common items from 2 arrays hvaing different keys in javascript 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));