Answers for "take two arrays and print only common values between them in js"

14

get common values from two arrays javascript

let intersection = arrA.filter(x => arrB.includes(x));
Posted by: Guest on March-31-2020

Code answers related to "take two arrays and print only common values between them in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language