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...
|
Make this syntax possible:
I got this question at http://dmitry.baranovskiy.com/post/31797647 Got no clue. Confused.... Know the answer... |
||||
|
|
|
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.
|
|||
|
|
First-class functions and closures do the job. |
||||
|
|
Ah, the beauty of JavaScript This syntax is pretty neat as well
|
|||||||||||||
|
|
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)
|
|||
|
|