vote up 4 vote down star
3

I'm trying to make a function that holds state but is called with foo().
Is it possible?

flag

Joel Spolsky has a really nice article on javascript functors: joelonsoftware.com/items/2006/… – peirix Jul 14 at 10:54

2 Answers

vote up 12 vote down check

I believe this is what you want:

var foo = (function () {
    var state = 0;

    return function () {
        return state++;
    };
})();

Or, following the Wikipedia example:

var makeAccumulator = function (n) {
    return function (x) {
        n += x;
        return n;
    };
};

var acc = makeAccumulator(2);

alert(acc(2)); // 4
alert(acc(3)); // 7

JavaScript is one of those languages that has, IMHO, excellent support for functions as first class citizens.

link|flag
it returns undefined twice. – the_drow Jul 14 at 11:02
Which "it". The foo() example does indeed return undefined. It was just as an example. The accumulator example should work as expected. I've added a simple use case. – Ionut G. Stan Jul 14 at 11:05
Thanks. The foo example. I commented before the second example. – the_drow Jul 14 at 11:12
1  
The foo example didn't return a value. I've added a return so that it should behave as expected. – Prestaul Jul 14 at 13:38
Good idea Prestaul, thanks. – Ionut G. Stan Jul 14 at 13:49
vote up 1 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.