Za: http://www.sitepoint.com/shorthand-javascript-techniques/
//lame if( myvar==1 || myvar==5 || myvar==7 || myvar==22 ) alert('yeah'); //nice if( [1,5,7,22].indexOf(myvar)!=-1 ) alert('yeah baby!')