I'm trying to make a function that holds state but is called with foo().
Is it possible?
|
3
|
|
|||
|
|
|
I believe this is what you want:
Or, following the Wikipedia example:
JavaScript is one of those languages that has, IMHO, excellent support for functions as first class citizens. |
||||||||||||
|
|
|
Since Javascript functions are first-class objects, this is the way to do it: var state = 0; var myFunctor = function() { alert('I functored: ' + state++);}; The "state" variable will be available to the myFunctor function in its local closure. (Global in this example). The other answers to this question have the more sophisticated examples. There's no equivalent to just "implementing operator ()" on some existing object, though. |
|||
|
|
