How can I create static variables in Javascript?
|
|
If you come from a class-based, strongly typed object-oriented language (like Java, C++ or C#) I assume that you are trying to create a variable or method associated to a "type" but not to an instance. An example using a "classical" approach, with constructor functions maybe could help you to catch the concepts of basic OO JavaScript:
|
|||||||||
|
|
You might take advantage of the fact that JS functions are also objects -- which means they can have properties. For instance, quoting the example given on the (now vanished) article Static variables in Javascript:
If you call that function several time, you'll see the counter is being incremented. And this is probably a much better solution than poluting the global namespace with a global variable.
Which gets you the same kind of result -- except, this time, the incremented value is returned, instead of displayed. |
|||||||||||||||||||
|
|
you can use arguments.callee to store "static" variables (this is useful in anonymous function too):
|
|||||||||||||
|
|
The following example and explanation are from the book Professional JavaScript for Web Developers 2nd Edition by Nicholas Zakas. This is the answer I was looking for so I thought it would be helpful to add it here.
The |
|||||
|
|
|||
|
|
|
The closest thing in JavaScript to a static variable is a global variable - this is simply a variable declared outside the scope of a function or object literal:
The other thing you could do would be to store global variables inside an object literal like this:
And then access the variabels like this: |
|||
|
|
There is no such thing as an static variable in Javascript. This language is prototype-based object orientated, so there are no classes, but prototypes from where objects "copy" themselves. You may simulate them with global variables or with prototyping (adding a property to the prototype):
|
|||||||
|
|
If you wanted to make a global static variable:
Replace the variable with the below:
|
|||
|
|
|
You do it through an IIFE (immediately invoked function expression):
|
|||
|
|
|
If you want to declare static variables for creating constants in your application then I found following as most simplistic approach
|
|||
|
|
|
There's another approach, which solved my requirements after browsing this thread. It depends on exactly what you want to achieve with a "static variable". The global property sessionStorage or localStorage allows data to be stored for the life of the session, or for an indefinite longer period until explicitly cleared, respectively. This allows data to be shared among all windows, frames, tab panels, popups etc of your page/app and is much more powerful than a simple "static/global variable" in one code segment. It avoids all hassle with the scope, lifetime, semantics, dynamics etc of top-level global variables, ie Window.myglobal. Don't know how efficient it is, but that's not important for modest amounts of data, accessed at modest rates. Easily accessed as "sessionStorage.mydata = anything" and retrieved similarly. See "JavaScript: The Definitive Guide, Sixth Edition", David Flanagan, ISBN: 978-0-596-80552-4, Chapter 20, section 20.1. This is easily downloadable as a PDF by simple search, or in your O'Reilly Safaribooks subscription (worth its weight in gold). Cheers, Greg E |
||||
|
|
|
Window level vars are sorta like statics in the sense that you can use direct reference and these are available to all parts of your app |
|||
|
This is just another way of having a static variable that I learned somewhere. |
|||||
|
