How to check if a variable or object is undefined?

前端 未结 7 1562
Happy的楠姐
Happy的楠姐 2020-12-10 16:51

I always thought I could just check an undefined var by comparing it to undefined, but this is the error I get in the chrome console :

相关标签:
7条回答
  • 2020-12-10 17:56

    As far as I know you can do

    if(typeof X == 'undefined')
    

    But there are resources loader you might want to take a look at. And the answer given before me is also correct.

    0 讨论(0)
提交回复
热议问题