Is there something in javascript/jQuery to check whether variable is set/available or not? In php, we use isset($variable) to check something like this.
thanks.
|
Is there something in javascript/jQuery to check whether variable is set/available or not? In php, we use thanks. |
|||||||||||
|
|
Try this expression:
This will be true if the array is defined and not null, which is the equivalent of how PHP's isset works. You can use it like this:
|
|||||||||||
|
|
Not naturally, no... However, a googling of the thing gave this: http://phpjs.org/functions/isset:454 |
|||||||
|
|
http://phpjs.org/functions/isset:454 phpjs project is a trusted source. Lots of js equivalent php functions available there. I have been using since a long time and found no issues so far. |
||||
|
|
|
If you want to check if a property exists: hasOwnProperty is the way to go And since most objects are properties of some other object (eventually leading to the |
|||
|
|
typeof will serve the purpose I think
|
|||
|
|
|||
|
|