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

Whenever I submit a plugin to Firefox I get an email telling me some of my variables are leaking into the global scope... once they tell me I fix the issue. But till then is there any way (program?) to check if the variables are leaking into the global scope?

Thanks!

share|improve this question
1  
Different, here am asking for a tool... there i had no idea what was going on... – Ryan Jul 26 '11 at 18:11
I didn't notice you're the same person :) – nobody Jul 26 '11 at 20:56

5 Answers

up vote 3 down vote accepted

Both JSLint and JSHint will give you warnings when you miss a var. Both are available on Github (JSLint, JSHint) and both can be run from the command line using Node.js, Rhino or any other non-browser environment of your choice. They can even be integrated into your text editor / IDE of choice and run with a keystroke.

share|improve this answer
Thanks and thanks others who replied as well! – Ryan Jul 26 '11 at 18:10

The ECMAScript standard 5th edition introduces an optional "strict mode", which forces you to use a cleaner subset of JS. In strict mode, if you try to assign to a variable that hasn't been declared with the var keyword, a ReferenceError will be thrown.

You can enable strict mode inside a function, or in the entire file, by including this as the first statement:

"use strict";

I'd recommend strict mode for your problem. It's already implemented in recent versions of major browsers. See here for an overview:

https://developer.mozilla.org/en/JavaScript/Strict_mode

share|improve this answer

Any variable declaration inside a function that doesn't start with var will leak into global scope. You can check for those.

share|improve this answer
Yes, this is what I was thinking... while tools to check these things are great, it's not hard to avoid having any global variables in JS. – Reid Jul 26 '11 at 17:10

The lint tools others have recommended are an excellent idea, and will point you at the problem, but if you have unittests, you can incorporate tests for leaked globals into them.

Just run this before you load your source code,

var globalsBeforeLoad = {};
(function () {
  for (var k in this) { globalsBeforeLoad[k] = true; }
})()

and then run this after you load your code

(function () {
  var leaked = [];
  for (var k in this) {
    if (!Object.hasOwnProperty.call(globalsBeforeLoad, k)) {
      leaked.push(k);
    }
  }
  if (leaked.length) { alert("You leaked " + leaked.join(", ")); }
})()
share|improve this answer

Declare all your variables at the top of each function.

The worst of all of JavaScript's bad features is its dependence on global variables. A global variable is a variable that is visible in every scope. Global variables can be a convenience in very small programs, but they quickly become unwieldy as programs get larger. Because a global variable can be changed by any part of the program at any time, they can significantly complicate the behavior of the program. Use of global variables degrades the reliability of the programs that use them. [...] In most languages, it is generally best to declare variables at the site of first use. That turns out to be a bad practice in JavaScript because it does not have block scope. It is better to declare all variables at the top of each function.

"JavaScript: The Good Parts by Douglas Crockford. Copyright 2008 Yahoo! Inc., 978-0-596-51774-8."

share|improve this answer
Good advise! Thx! – Ryan Jul 26 '11 at 18:09

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.