1、for(var i=0; i<10; i++){
if(i%2){
doSomething();
}else{
}
2、
for(var i=0; i<10; i++){
if(i&2){
第二种写法要比第一种写法快大约50%(取决于浏览器)