how can i check if at least one value from the first array exists on the second array?, for example, how can i check if there BMW on car_1 array and car_2 array?
var cars_1 = new Array("Saab","Volvo","BMW");
var cars_2 = new Array("Honda","Mazda","BMW", "suzuki");
["Saab", "Volvo", "BMW"]is funtionally equivalent. Usingnew Array()is ugly.