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

This is messy stuff (not my code but I'm stuck to it). A function depends on a globally defined variable.

function variableIssues(){
    alert(someGlobalString);  // alerts "foo"
}

Sometimes this globally defined variable is, undefined. In this case we want to cast it for further processing. The function is modified.

function variableIssues(){
    alert(someGlobalString); // undefined

    if (!someGlobalString){
        var someGlobalString = "bar";
    }  
}

However, if this function is now called with a defined someGlobalString, because of javascript evaluation the variable is set to undefined and always get set to bar.

function variableIssues(){
    alert(someGlobalString); // "should be foo, but javascript evaluates a 
                             // variable declaration it becomes undefined"

    if (!someGlobalString){
        var someGlobalString = "bar";
    }  
}

I would like to get some suggestions on how to handle undefined global variable. Any ideas?

share|improve this question

2 Answers

up vote 2 down vote accepted

Global variables are properties of the window object, so you can access them explicitly with window:

if (!window.someGlobalString) {
// depending on possible values, you might want:
// if (typeof window.someGlobalString === 'undefined')
    window.someGlobalString = "bar";
}

If you are using global variables, then this is better style, since it is clear what you are doing and assigning to undefined global variables wouldn't throw an error in strict mode.

share|improve this answer
It works, doh! In this manner it won't need a var statement. Thanks! – Justus Romijn Feb 15 at 10:18

Think about this:

!true // outputs: false
!!true // outputs: true
!false // outputs: true

You can check if a variable is set with != null or == null, or even !== null and === null if explicitly checking.

EDIT:

The exclamination sign ! only reverts a given value to True or False depending the value of it's current boolean value. My up above examples will give you the idea what it acctualy does.

This should work for you:

function variableIssues(){
    alert(someGlobalString); // "should be foo, but javascript evaluates a 
                             // variable declaration it becomes undefined"

    if (someGlobalString === null || someGlobalString == undefined){
        var someGlobalString = "bar";
    }  
}
share|improve this answer
2  
This does not solve my problem. The variable becomes undefined because javascript evaluates the var statement, and overrides any value passed in beforehand. – Justus Romijn Feb 15 at 10:19
I've added a code example, check it now.. note that undefined is a reserved keyword and it is equal to null in most JavaScript engines! – Zlatan O. Feb 15 at 10:20
The question is not how to check for undefined though, but how to access global variables. And I have to correct you: undefined is not a reserved keyword and it is not equal to null if you do strict comparison. – Felix Kling Feb 15 at 10:22
OK, no matter what the question is, he can learn alot from my answer :) cheers – Zlatan O. Feb 15 at 10:23
Hmm well it is a Q&A website, so I think you should focus on answering the question. But thanks for your time anyway. – Justus Romijn Feb 15 at 10:30

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.