I have a problem in Node.js.. My problem is two arrays comparing. For example;
My original array is;
var a = ["1","2","3","4","5"];
and the other array is;
var b = ["3","1","4","6","8","7"];
so, result message what I want is: "2 and 5 is missing the original array.."
So how can I get this message after comparison of two arrays?