You can use the **in** operator to check if a value is in a list: var x = 1; var y = 3; var list = [0,1,2]; x in list; //true y in list; //false 1 in list; //true y in [3,4,5]; //true