Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Make this syntax possible:

var a = add(2)(3); //5

I got this question at http://dmitry.baranovskiy.com/post/31797647

Got no clue. Confused.... Know the answer...

share|improve this question

4 Answers

You need add to be a function that takes an argument and returns a function that takes an argument that adds the argument to add and itself.

var add = function(x) {
    return function(y) { return x + y; };
}
share|improve this answer
26 secs faster. You win. – NVI Feb 16 '10 at 12:51
function add(x){
  return function(y){
    return x+y
  }
}

First-class functions and closures do the job.

share|improve this answer
function add(x) {
    return function(y) {
        return x + y;
    };
}

Ah, the beauty of JavaScript

This syntax is pretty neat as well

function add(x) {
    return function(y) {
        if (typeof y !== 'undefined') {
            x = x + y;
            return arguments.callee;
        } else {
            return x;
        }
    };
}
add(1)(2)(3)(); //6
add(1)(1)(1)(1)(1)(1)(); //6
share|improve this answer
1  
if (y) should be if (typeof y === "undefined"), since zero is a valid argument. – Matthew Crumley Feb 16 '10 at 14:06
1  
and x + 0 is x again, so it is actually correct =) – dionadar Feb 16 '10 at 14:19
1  
@dionadar well, not exactly (0) will return the value of x wich is not a function so you can't add anything else after you've used (0). – Oscar Kilhed Feb 16 '10 at 14:28

in addition to what's already said, here's a solution with generic currying (based on http://github.com/sstephenson/prototype/blob/master/src/lang/function.js#L180)

Function.prototype.curry = function() {
    if (!arguments.length) return this;
    var __method = this, args = [].slice.call(arguments, 0);
    return function() {
      return __method.apply(this, [].concat(
        [].slice.call(args, 0),
        [].slice.call(arguments, 0)));
   }
}


add = function(x) {
    return (function (x, y) { return x + y }).curry(x)
}

console.log(add(2)(3))
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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