show/hide this revision's text 5 edited body

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:

function list()
 { var x = {};
   for(int for(var i=0; i < arguments.length; ++i) x[arguments[i]] = 0;
   return x
 }

 3 5 in list(1,2,3,4,5); list(1,2,3,4,5) //true
show/hide this revision's text 4 added 1 characters in body

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 argumentless paramaterless function tip:

function list()
 { var x = {};
   for(int i=0; i < arguments.length; ++i) x[arguments[i]] = 0;
   return x
 }

3 in list(1,2,3,4,5); //true
show/hide this revision's text 3 added 265 characters in body

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 argumentless function tip:

function list()
 { var x = {};
   for(int i=0; i < arguments.length; ++i) x[arguments[i]] = 0;
   return x
 }

3 in list(1,2,3,4,5); //true
show/hide this revision's text 2 added 16 characters in body
    Post Made Community Wiki by Community
show/hide this revision's text 1