typeof usage for undefined variables
"typeof"javascript函数的最佳用法是什么?
1 2 3 4 5 6 7 | if (typeof (myvar) == 'undefined') { //or if (typeof (myvar) == undefined) { //or if (typeof myvar == 'undefined') { //or if (typeof myvar == undefined) { |
谢谢
当您比较事物时,除非您需要,否则避免类型强制(即使用
1 | if (typeof myvar === 'undefined') { |
严格比较(
1 | if (typeof myvar ==="undefined") {} |