Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
1  
do you mean null check or dom availability check... – kobe Nov 20 '10 at 8:05
what does?? isset does..in php , i don't know thats why i am asking – kobe Nov 20 '10 at 8:07
@gov isset — Determine if a variable is set and is not NULL - php.net/manual/en/function.isset.php – Sandeepan Nath Nov 20 '10 at 8:09
ok , got a kind of null check – kobe Nov 20 '10 at 8:13

6 Answers

up vote 30 down vote accepted

Try this expression:

typeof(variable) != "undefined" && variable !== null

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:

if(typeof(variable) != "undefined" && variable !== null) {
    bla();
}
share|improve this answer
I think you meant && variable !== null. – PleaseStand Nov 20 '10 at 8:12
No, I absolutely meant &&. The variable may be defined and still null. You are correct about the strict type-checking though so I will add that to my answer, thanks. – Emil Vikström Nov 20 '10 at 8:15
I briefly tried the second of your alternatives. It did not work out because trying to call the custom isset() fuction with an undefined argument threw an exception in FF4. The first option worked for me. Thanks. – C.O. Jun 8 '11 at 15:04
Your function can cause an exception. stackoverflow.com/questions/4231789/… – Oleg Apr 13 '12 at 9:00
Oleg, yes, someone else have already mentioned that. I've removed the function. – Emil Vikström Apr 13 '12 at 9:01
show 2 more comments

Not naturally, no... However, a googling of the thing gave this: http://phpjs.org/functions/isset:454

share|improve this answer
1  
The downside to this function is that it's slow. My solution is slow too compared to PHP language constructs, but at least not as slow as checking the arguments.length property and running a loop. PHPJS's solution is still useful for checking against multiple variables at once. – Emil Vikström Nov 20 '10 at 8:22
+1. Speed is everything in Js... – Ioannis Karadimas Nov 20 '10 at 8:40

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.

share|improve this answer

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 window object) this can work well for checking if values have been declared.

share|improve this answer
Clever, but only useful if you know which object you are working on. – Emil Vikström Nov 20 '10 at 8:20

typeof will serve the purpose I think

if(typeof foo != "undefined"){}
share|improve this answer
Note, however, that typeof null == 'object' - just another one of the quirks of JavaScript. – PleaseStand Nov 20 '10 at 8:10

JavaScript isset() on PHP JS

function isset () {
// !No description available for isset. @php.js developers: Please update the function summary text file.
// 
// version: 1109.2015
// discuss at: http://phpjs.org/functions/isset    // +   original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
// +   improved by: FremyCompany
// +   improved by: Onno Marsman
// +   improved by: Rafał Kukawski
// *     example 1: isset( undefined, true);    // *     returns 1: false
// *     example 2: isset( 'Kevin van Zonneveld' );
// *     returns 2: true
var a = arguments,
    l = a.length,        i = 0,
    undef;

if (l === 0) {
    throw new Error('Empty isset');    }

while (i !== l) {
    if (a[i] === undef || a[i] === null) {
        return false;        }
    i++;
}
return true;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.