How can I prevent variables from being declared without using the var keyword? Can I set NetBeans to warn me about this?
For example, I want a warning or something on this:
var testing = 5;
// ...
testin = 2; // Woops, typo!
|
How can I prevent variables from being declared without using the For example, I want a warning or something on this:
|
|||
|
|
|
I can think of at least a couple of possibilities for you. One is JSLint, as mentioned above. Another is to use the new Javascript feature called "strict mode" (described here among other places) I have heard that the nightly builds of Firefox now support strict mode, as do the pre-release versions of Chrome. Soon all new browser versions will support it. |
|||||||||||
|
|
I just came across this question and thought it worth noting that ECMAScript 5 now has an option called "use strict". Just put "use strict"; (including the quotes) on a line by itself either at the top of your script (to use it everywhere) or within a function to just use it in one spot. See http://ejohn.org/blog/ecmascript-5-strict-mode-json-and-more/ for more details. Extremely handy! |
|||
|
|
|
Javascript will automatically declare new variables that don't have the var keyword. See, for example: Variables What problem are you trying to solve? In other words, the title of this question isn't really right--I think you want to catch incorrect references, "Prevent declaring variables without var" is not the right way to look at the issue. If you want to catch incorrect variable references: use Javascript Lint and their "Option Explicit" See http://www.javascriptlint.com/docs/index.htm If you turn Option Explicit on, it will catch your error of referring to "testin" when you meant "testing". |
|||||||||||||
|