Contact: aviboots(AT)netvision.net.il
39,900 questions
51,831 answers
573 users
const arr1 = [1, 3, 8, 9, 17, 18]; const arr2 = [1, 8, 5, 12, 18, 19, 100, 120]; let notinarr1 = arr2.filter(function(obj) { return arr1.indexOf(obj) == -1; }); console.log(notinarr1); /* run: [ 5, 12, 19, 100, 120 ] */