检查变量是否设置的最佳方法是什么?

这个问题在这里已经有了答案:

  • JavaScript检查变量是否存在(已定义/初始化)28个答案

  • 使用typeof检查它

    if(typeof(a) != "undefined") {
         //code goes here
    }
    

    这里有一些相关的问题。

    我怎样才能检查一个变量是否在JavaScript中定义?

    测试一个变量是否在JavaScript中定义?


    if (typeof a !="undefined")
    {
     //write your code here
    }
    
    链接地址: http://www.djcxy.com/p/95009.html

    上一篇: What is the best way to check if a variable is set?

    下一篇: Uncaught ReferenceError: Notification is not defined