I am wanting to see if a certain object has been loaded, if not, i want to load it like this:
If(!isObjectLoaded(someVar)) {
someVar= loadObject();
}
|
1
|
I am wanting to see if a certain object has been loaded, if not, i want to load it like this:
|
|||
|
|
|
|
|
||||
|
|
|
If it is an object then you should just be able to check to see if it is null or undefined and then load it if it is.
Using the typeof function is also an option as it returns the type of the object provided. However, it will return null or undefined if the object has not been loaded so it might boil down a bit to personal preference in regards to readability. |
||||
|
|
|
I'm not sure what you mean by "loaded"... does the variable
and then use If
|
||
|
|
|
|
You probably want to see if a given object is defined Especially if its done in an asynchronous thread with a setTimeout to check when it turns up.
should in theory detect when window.foo comes into existance. |
||
|
|
|
|
If by loaded you mean defined, you can check the type of the variable with the typeof function. HOWEVER typeof has a few quirks, and will identify an Object, an Array, and a null as an object
Identifying a null as a defined object would probably cause your program to fail, so check with something like
|
||
|
|
|
|
|
||
|
|
|
|
You can also just use a shortcut |
||
|
|
|
|
If you want to detect a custom object:
|
|||
|
|