You can use the **in** operator to check if a value is in a list:

    var x = 1;
    var y = 3;
    var list = {0:0, 1:0, 2:0};
    x in list; //true
    y in list; //false
    1 in list; //true
    y in {3:0, 4:0, 5:0}; //true

**(Edit)**: had to change list literals to object literals. See Armin's comment. If you find the object literals too ugly you can combine it with the [paramaterless function tip](#65028):


    function list()
     { var x = {};
       for(var i=0; i < arguments.length; ++i) x[arguments[i]] = 0;
       return x
     }
  
     5 in list(1,2,3,4,5) //true