javascript的if简写

if(a){
 b
}

可以写成 a && b

if(!a){
b
}

a || b

相关推荐