检查变量是否未定义

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

  • 如何确定变量是'undefined'还是'null'? 24个答案

  • 未定义是js中的虚假...它看起来像bar.baz可能是你的罪魁祸首。


    您可以使用typeof来检查变量是否undefined 。 它总是返回一个string

    if (typeof foo === 'undefined') {
      console.log('foo is undefined');
    }
    
    var foo = ['one', 'two', 'three'];
    
    if (typeof foo !== 'undefined') {
      // access elements
      console.log(foo[0] + ', ' + foo[1] + ', ' + foo[2]);
    }
    链接地址: http://www.djcxy.com/p/76351.html

    上一篇: Check if variable is undefined

    下一篇: !== vs !=