typeof (myVariable)
和相比有什么区别typeof myVariable
吗?
两者都有效,但来自 PHP,我不明白为什么这个函数可以使用括号。
typeof (myVariable)
和相比有什么区别typeof myVariable
吗?
两者都有效,但来自 PHP,我不明白为什么这个函数可以使用括号。
typeof
关键字代表编程中的运算符。Javascript
规范typeof
中运算符的正确定义是:
typeof[(]expression[)] ;
这就是使用typeof
astypeof(expression)
或的原因typeof expression
。
之所以要这样实现它,可能是为了让开发人员处理其代码中的可见性级别。因此,可以使用 typeof 使用干净的条件语句:
if ( typeof myVar === 'undefined' )
// ...
;
或者使用分组运算符定义更复杂的表达式:
const isTrue = (typeof (myVar = anotherVar) !== 'undefined') && (myVar === true);
编辑 :
在某些情况下,在运算符中使用括号typeof
可以使编写的代码不易产生歧义。
以下面的表达式为例,其中typeof
使用了不带括号的运算符。将typeof
返回空字符串文字和数字之间的连接结果的类型,还是字符串文字的类型?
typeof "" + 42
查看上述运算符的定义以及运算符 and 的优先级typeof
+
,似乎前面的表达式等价于:
typeof("") + 42 // Returns the string `string42`
在这种情况下,使用括号 withtypeof
会使您想要表达的内容更加清晰:
typeof("" + 42) // Returns the string `string`