how to search for common items between arrays code example Example: get common values from two arrays javascript let intersection = arrA.filter(x => arrB.includes(x));