作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想检查一个变量是否未定义
,不包括分配给undefined
的变量,没有try/catch
。
我知道 typeof 变量
,但这不符合我的要求。
例如:
let a;
console.log(typeof a === typeof b); // outputs true
console.log(a); // outputs 'undefined'
console.log(b); // throws error 'b is not defined'
我希望能够区分 undefined variable 和值为 undefined
的变量,而无需使用 try/catch
.
我的用例(来自评论)是:
I would like to see the difference in a function call between a parameter ommitted and set at undefined. And also in general if it was possible
最佳答案
一种可能是使用 window.hasOwnProperty("var"),像这样:
虽然不知道这是否适用于所有情况......
您也可以尝试使用“this”关键字而不是“window”来将“hasOwnProperty”函数集中在当前作用域上。
var a;
console.log("Is a declared? "+window.hasOwnProperty("a"));
console.log("type of a: "+typeof(a));
console.log("Is b declared? "+window.hasOwnProperty("b"));
console.log("type of b: "+typeof(b));
关于javascript - 如何检查变量是否为 'not defined'(不仅仅是 `undefined`),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51139367/
我是一名优秀的程序员,十分优秀!