Storm
0
Q:

how to compare two arrays and return the missing values

var a1 = [1,2,3,4,5,6];
var a2 = [1,3,5];

var absent = a1.filter(e=>!a2.includes(e));

console.log(absent);
1

New to Communities?

Join the community