Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to check whether a JavaScript variable defined in cross-browser way?

I ran into this problem when writing some JavaScript utilizing FireBug logging. I wrote some code like below:

function profileRun(f) {
    // f: functions to be profiled
    console.profile(f.constructor);
    f();
    console.profileEnd(f.constructor);
}

It works fine in FireFox/FireBug, but it reports error in IE8 RC1. So, I'd like to do some checking whether console variable exists in the execution environment.

Below code works fine in FireFox, but not in IE8 RC1.

function profileRun(f) {
    if (console != undefined) {
        console.profile(f.constructor);
    }

    f();

    if (console != undefined) {
        console.profileEnd(f.constructor);
    }
}

However, if I do it this way. It works in IE8 RC1. Why?

function profileRun(f) {
    if (window.console != undefined) {
        console.profile(f.constructor);
    }

    f();

    if (window.console != undefined) {
        console.profileEnd(f.constructor);
    }
}

Is there any cross-browser way to check it?

share|improve this question
You should also check out firebug lite which works for many browsers when the ordinary firebug is not available. There is also a firebugx.js, which has no functionality but can be loaded just to avoid having to do the test. (Google that if you need it) – krosenvold Feb 6 '09 at 5:03
honestly, i don't like firebug lite as much as IE8's dev tools. – geowa4 Feb 6 '09 at 5:06
7  
@geowa4 You should be charged with murder. IE8 dev tools over firebug? Are you serious? – Abe Petrillo Jan 17 '12 at 17:12
necromancer, nice. iirc back to 2009, firebug lite would crash or lose track of things in ie. ie8's dev tools at least executed. – geowa4 Jan 19 '12 at 19:59
2  
@Abe Petrillo firebug lite is TERRIBLE – Oscar Godson Mar 30 '12 at 22:39
show 1 more comment

6 Answers

up vote 532 down vote accepted

You want the typeof operator. Specifically:

if (typeof variable === 'undefined') {
    // variable is undefined
}
share|improve this answer
2  
This looks a good solution, but can you explain why this works? – Morgan Cheng Feb 6 '09 at 5:15
10  
Actually, you should check that the object is what you need it to be. So that would be if( typeof console == 'object' ) { // variable is what I need it to be } – staticsan Feb 6 '09 at 6:14
19  
@George IV: "just do `if( variable ) " -- um, no, that fails for false and 0. – Jason S May 13 '09 at 15:53
4  
'if( variable )' also fails for testing for the existence of object properties. – scotts May 4 '10 at 22:40
10  
@geowa4 Actually, that will throw an error if the variable is undefined. – mc10 Apr 19 '11 at 4:59
show 8 more comments

In JavaScript, a variable can be defined, but hold the value undefined, so the most common answer is not technically correct, and instead performs the following:

if (typeof v === "undefined") {
   // no variable "v" is defined in the current scope
   // *or* some variable v exists and has been assigned the value undefined
} else {
   // some variable (global or local) "v" is defined in the current scope
   // *and* it contains a value other than undefined
}

That may suffice for your purposes. The following test has simpler semantics, which makes it easier to precisely describe your code's behavior and understand it yourself (if you care about such things):

if ("v" in window) {
   // global variable v is defined
} else {
   // global variable v is not defined
}

This, of course, assumes you are running in a browser (where window is a name for the global object). But if you're mucking around with globals like this you're probably in a browser. Subjectively, using 'name' in window is stylistically consistent with using window.name to refer to globals. Accessing globals as properties of window rather than as variables allows you to minimize the number of undeclared variables you reference in your code (for the benefit of linting), and avoids the possibility of your global being shadowed by a local variable. Also, if globals make your skin crawl you might feel more comfortable touching them only with this relatively long stick.

share|improve this answer
3  
Technically this is the most complete answer, thanks! – crabCRUSHERclamCOLLECTOR Nov 14 '12 at 18:19
Agreed this is spot on. – Chad Jan 16 at 6:00
Suggestion: try { zazuzu } catch (e) { if (e.name === "ReferenceError") { "not defined behaviour" } else { throw e } }. The missing piece of your answer — checking if variable is defined in any accessible scope. Will return "not defined behaviour" when zazuzu has not been defined and will return undefined if zazuzu has been defined but its value is undefined. Works in Opera. Not checked other browsers, I have no means to check them all anyway… However, I believe the name "ReferenceError" is consistent among browsers/implementations. – skalee Feb 17 at 3:15

The highest answer is correct, use typeof.

However, what I wanted to point out was that in JavaScript undefined is mutable (for some ungodly reason). So simply doing a check for varName !== undefined has the potential to not always return as you expect it to, because other libs could have changed undefined. A few answers (@skalee's, for one), seem to prefer not using typeof, and that could get one into trouble.

The "old" way to handle this was declaring undefined as a var to offset any potential muting/over-riding of undefined. However, the best way is still to use typeof because it will ignore any overriding of undefined from other code. Especially if you are writing code for use in the wild where who knows what else could be running on the page...

share|improve this answer
if (typeof console != "undefined") {    
   ...
}

Or better

if ((typeof console == "object") && (typeof console.profile == "function")) {    
   console.profile(f.constructor);    
}

Works in all browsers

share|improve this answer
1  
Why the latter is better in your opinion? – skalee Feb 17 at 3:32

In the particular situation outlined in the question,

typeof window.console === "undefined"

is identical to

window.console === undefined

I prefer the latter since it's shorter.

Please note that we look up for console only in global scope (which is a window object in all browsers). In this particular situation it's desirable. We don't want console defined elsewhere.

@BrianKelley in his great answer explains technical details. I've only added lacking conclusion and digested it into something easier to read.

share|improve this answer
typeof variable !== 'undefined'
    ? // handle defined
    : // handle undefined
share|improve this answer
4  
So, false is not a defined value, according to you? – Jan Dvorak Feb 16 at 6:45
@JanDvorak Happy now? Read this: en.wikipedia.org/wiki/Duck_typing – benny Feb 17 at 0:31
1  
Maybe typeof(variable) !== 'undefined' ? – guillegr123 Apr 29 at 17:38
Ah typo. Fixed; thanks. – benny Apr 29 at 19:49

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.