How to check the array list has contains value?? for example:
var number = [1, 9, 9, 4];
if(number == [1, 9, 9, 4]){ //true}
else if(number == [2, 1, 5, 4){ //false;}
else if(number == [9, 1, 4, 9){ //false;}
if there any method to see to check the array list has contains value eg"1994"?? Thank you very much!!!!