Advertisement
silvana1303

common elements

Apr 7th, 2021
408
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function  solve(arr1, arr2){
  2.  
  3.     let intersection = arr1.filter(element => arr2.includes(element));
  4.  
  5.     for (let i = 0; i < intersection.length; i++) {
  6.         console.log(intersection[i]);
  7.     }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement