我们经常在JavaScript代码中使用以下代码模式
if (typeof(some_variable) != 'undefined' && some_variable != null) { // Do something with some_variable }
是否有一种不那么冗长的检查方式具有相同的效果?
根据一些论坛和文献说,以下应该具有相同的效果.
if (some_variable) { // Do something with some_variable }
不幸的是,当未定义时,Firebug将这样的语句评估为运行时错误some_variable
,而第一个语句就好了.这只是Firebug的一个(不需要的)行为,还是这两种方式之间确实存在一些差异?
我认为测试"价值是null
或undefined
" 的最有效方法是
if ( some_variable == null ){ // some_variable is either null or undefined }
所以这两行是等价的:
if ( typeof(some_variable) !== "undefined" && some_variable !== null ) {} if ( some_variable != null ) {}
注1
正如问题中所提到的,short变量要求some_variable
已声明,否则将抛出ReferenceError.但是在许多用例中,您可以认为这是安全的:
检查可选参数:
function(foo){ if( foo == null ) {...}
检查现有对象的属性
if(my_obj.foo == null) {...}
另一方面typeof
可以处理未声明的全局变量(简单地返回undefined
).然而,正如Alsciende所解释的那样,这些案例应该有充分的理由减少到最低限度.
笔记2
这个 - 甚至更短 - 变体不等同于:
if ( !some_variable ) { // some_variable is either null, undefined, 0, NaN, false, or an empty string }
所以
if ( some_variable ) { // we don't get here if some_variable is null, undefined, 0, NaN, false, or "" }
注3
一般来说,建议使用===
而不是==
.建议的解决方案是此规则的一个例外.由于这个原因,JSHint语法检查器甚至提供了eqnull
选项.
从jQuery样式指南:
应使用严格的相等性检查(===)以支持==.唯一的例外是通过null检查undefined和null.
// Check for both undefined and null values, for some important reason. undefOrNull == null;
您必须区分两种情况:
未定义的变量,如undefined
.如果在除了以外的任何上下文中访问未定义的变量,您将收到错误typeof
.
if(typeof someUndeclaredVar == whatever) // works if(someUndeclaredVar) // throws error
因此,对于变量,undefined
检查是必须的.另一方面,它很少需要 - 你通常知道你的变量是否被定义.
未定义的属性,如someExistingObj.someUndefProperty
.未定义的属性不会产生错误并且只返回undefined
,当转换为布尔值时,求值为false
.所以,如果你不关心
0
和false
使用if(obj.undefProp)
就可以了.基于这个事实有一个共同的习语:
let foo; if (foo) //evaluates to false because foo === undefined
这意味着"如果obj
有属性prop
,则分配给它value
,否则分配默认值defautValue
".
有些人认为这种行为令人困惑,认为这会导致难以发现的错误并建议使用in
运营商
value = obj.prop || defaultValue
对于undefined,使用正常相等性检查null也将返回true.
if (window.variable == null) alert('variable is null or undefined');
在较新的JavaScript标准中,例如ES5和ES6,您可以这么说
> Boolean(0) //false > Boolean(null) //false > Boolean(undefined) //false
all返回false,类似于Python对空变量的检查.因此,如果您想围绕变量编写条件逻辑,那就说
if (Boolean(myvar)){ // Do something }
这里"null"或"空字符串"或"未定义"将被有效处理.
如果您尝试引用未声明的变量,则会在所有JavaScript实现中引发错误.
对象的属性不受相同条件的约束.如果尚未定义对象属性,则在尝试访问它时不会引发错误.所以在这种情况下你可以缩短:
if (typeof(myObj.some_property) != "undefined" && myObj.some_property != null)
至
if (myObj.some_property != null)
考虑到这一点,以及全局变量可作为全局对象的属性(window
在浏览器的情况下)可访问的事实,您可以将以下内容用于全局变量:
if (window.some_variable != null) { // Do something with some_variable }
在本地范围中,确保变量在代码块的顶部声明总是有用的,这将节省重复使用的时间typeof
.
首先,你必须非常清楚你测试的是什么.JavaScript有各种各样的隐式转换,以及两种不同类型的相等比较器:==
和===
.
test(val)
测试null
或undefined
应具有以下特征的函数:
test(null) => true test(undefined) => true test(0) => false test(1) => false test(true) => false test(false) => false test('s') => false test([]) => false
让我们看看这里的哪些想法实际上通过了我们的测试.
这些工作:
val == null val === null || val === undefined typeof(val) == 'undefined' || val == null typeof(val) === 'undefined' || val === null
这些不起作用:
typeof(val) === 'undefined' !!val
我创建了一个jsperf条目来比较这些方法的正确性和性能.由于在不同的浏览器/平台上没有足够的运行,因此结果目前尚无定论.请花点时间在您的计算机上运行测试!
目前,似乎简单的val == null
测试提供了最佳性能.它也是最短的.val != null
如果你想要补充,可以否定测试.
由于没有一个完整而正确的答案,因此我将尝试总结一下:
通常,表达式为:
if (typeof(variable) != "undefined" && variable != null)
无法简化,因为variable
可能未声明,因此省略typeof(variable) != "undefined"
将导致ReferenceError。但是,您可以根据上下文简化表达式:
如果variable
是全局,则可以简化为:
if (window.variable != null)
如果它是local,则可以避免未声明此变量的情况,并且还可以简化为:
if (variable != null)
如果它是object property,则不必担心ReferenceError:
if (obj.property != null)
这是唯一==
应使用的情况:
if (val == null) console.log('val is null or undefined')
您可以检查变量是否具有值.含义,
if( myVariable ) { //mayVariable is not : //null //undefined //NaN //empty string ("") //0 //false }
如果您不知道变量是否存在(即,如果已声明),则应使用typeof运算符进行检查.例如
if( typeof myVariable !== 'undefined' ) { // myVariable will get resolved and it is defined }