How to check if a variable is loaded in JavaScript?

后端 未结 10 1857
遇见更好的自我
遇见更好的自我 2021-01-31 04:01

How do I see if a certain object has been loaded, and if not, how can it be loaded, like the following?

if (!isObjectLoaded(someVar)) {
    someVar= loadObject()         


        
10条回答
  •  耶瑟儿~
    2021-01-31 04:50

    if (!("someVar" in window)) {
      someVar = loadObject();
    }
    

    will tell you whether any JS has previously assigned to the global someVar or declared a top-level var someVar.

    That will work even if the loaded value is undefined.

提交回复
热议问题