How do I verify the existence of an object in JavaScript?
The following works:
if (!null)
alert("GOT HERE");
But this fails:
if (!maybeObject)
alert("GOT HERE");
Error: maybeObject is not defined.
|
How do I verify the existence of an object in JavaScript? The following works:
But this fails:
Error: maybeObject is not defined. |
||||
|
|
|
You can safely use the If it has been assigned any value, including null, typeof will return something other than undefined. typeof always returns a string. Therefore
|
|||||||||||
|
|
There are a lot of half-truths here, so I thought I make some things clearer. Actually you can't accurately tell if a variable exists (unless you want to wrap every second line into a try-catch block). The reason is Javascript has this notorious value of
So both a variable that exists and another one that doesn't can report you the As for @Kevin's misconception, If you restrict the question to check if an object exists, The primal area where you really should be careful about |
|||||||||||||||
|
|
You could use "typeof".
|
|||
|
|
|
I used to just do a
So only if https://sites.google.com/site/javaerrorsandsolutions/home/javascript-dynamic-checkboxes |
||||
|
|
|
If you aim for use in Browser-Javascript, you might want to do it this way:
|
|||
|
|
|
Or, you can all start using my exclusive exists() method instead and be able to do things considered impossible. i.e.: Things like: |
||||
|
|