How to check if a variable or object is undefined?

前端 未结 7 1560
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.

提交回复
热议问题