JavaScript |检查变量是否存在
JavaScript 有一个内置函数来检查变量是否已定义/初始化或未定义。
笔记:
- typeof运算符将检查变量是否已定义。
- typeof运算符在与未声明的变量一起使用时不会引发 ReferenceError 异常。
- typeof null将返回一个对象。因此,还要检查 null 。
示例 1:此示例检查变量是否已定义。
html
JavaScript to check existence of variable
GeeksForGeeks
variable-name : GFG_Var
html
JavaScript to check existence of variable
GeeksForGeeks
variable-name : GFG_Var
html
JavaScript to check existence of variable
GeeksForGeeks
variable-name : GFG_Var
输出:
- 在点击按钮之前:
- 点击按钮后:
示例 2:此示例还检查变量是否已定义。
html
JavaScript to check existence of variable
GeeksForGeeks
variable-name : GFG_Var
输出:
- 在点击按钮之前:
- 点击按钮后:
示例 3:前面的示例不检查变量的空值。此示例还检查变量是否为空。
html
JavaScript to check existence of variable
GeeksForGeeks
variable-name : GFG_Var
输出:
- 在点击按钮之前:
- 点击按钮后: