我正在检查一个值是不是假的
if (value) {
..
}
但我确实想接受零作为(非假的)值。这通常是怎么做的?可不可能是
if (value || value === 0) {
..
}
或者是什么?
if (value || value === 0) {
..
}
是更清洁的方式,没问题。
只是为了好玩试试这个
val = 0;
if(val){
console.log(val)
}
//outputs 0 **update - it used to be.. but now it seems it doesnt in chrome
和
var val = 0;
if(val){
console.log(val)
}
//outputs nothing
我会用value || value === 0
。无论你采取哪种方式都很好,但IMO这是最干净的选择。