if (value || value === 0) {
..
}
is cleaner way, no problem.
Just for fun try this
val = 0;
if(val){
console.log(val)
}
//outputs 0 **update - it used to be.. but now it seems it doesnt in chrome
And
var val = 0;
if(val){
console.log(val)
}
//outputs nothing
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…