检查除零以外的错误在JavaScript中是否存在
我正在使用
检查值是否不是假的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
相关文章