As Marius already pointed, you can have public static variables in functions.
I usually use them to create functions that are executed only once, or to cache some complex calculation results.
Here's the example of my old "singleton" approach:
var singleton = function(){
if (typeof arguments.callee.__instance__ == 'undefined') {
arguments.callee.__instance__ = new function(){
//this creates a random private variable.
//this could be a complicated calculation or DOM traversing that takes long
//or anything that needs to be "cached"
var rnd = Math.random();
//just a "public" function showing the private variable value
this.smth = function(){ alert('it is an object with a rand num=' + rnd); };
};
}
return arguments.callee.__instance__;
};
var a = new singleton;
var b = new singleton;
a.smth();
b.smth();
As you may see, in both cases the constructor is run only once.
For example, I used this approach back in 2004 when I had to
create a modal dialog box with a gray background that
covered the whole page (something like Lightbox). Internet
Explorer 5.5 and 6 have the highest stacking context for
<select> or <iframe> elements due to their
"windowed" nature; so if the page contained select elements,
the only way to cover them was to create an iframe and
position it "on top" of the page. So the whole script was
quite complex and a little bit slow (it used filter:
expressions to set opacity for the covering iframe). The
"shim" script had only one ".show()" method, which created
the shim only once and cached it in the static variable :)