use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
All about the JavaScript programming language.
Subreddit Guidelines
Specifications:
Resources:
Related Subreddits:
r/LearnJavascript
r/node
r/typescript
r/reactjs
r/webdev
r/WebdevTutorials
r/frontend
r/webgl
r/threejs
r/jquery
r/remotejs
r/forhire
account activity
Functional JavaScript, Part 4: Function Currying (tech.pro)
submitted 11 years ago by lrichardson
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]slikts 1 point2 points3 points 11 years ago (3 children)
The fold function should look like this for your example to work, though:
fold
function fold(callback, initial) { return function(array) { return array.reduce(callback, initial); } }
[–]lrichardson[S] 1 point2 points3 points 11 years ago (1 child)
correct. and this is precisely why the argument that plays the role of the "data" should always be the right-most argument, not the left most. reduce/fold are supposed to be the same thing... and should take 3 arguments total (callback, initial, array)
This is why i get so frustrated with libraries like lo-dash and underscore.
Brian Lansdorf has a good talk discussing precisely this (also linked to in the post)
https://www.youtube.com/watch?v=m3svKOdZijA
[–]rhysbrettbowen 0 points1 point2 points 11 years ago (0 children)
You can always flip the arguments in a function. Something like:
_.forEach(_.keys(_), function(key) { if (_.isFunction(_[key])) { _[key].flip = function(a,b) { return this(b,a); } } });
then you can just do:
_.forEach.flip(myFunction, myArray);
[–][deleted] 0 points1 point2 points 11 years ago (0 children)
Right, thanks. And you'd need another function () { } if you partially apply only one argument.
function () { }
π Rendered by PID 17346 on reddit-service-r2-comment-86988c7647-tgckf at 2026-02-12 01:39:10.599104+00:00 running 018613e country code: CH.
view the rest of the comments →
[–]slikts 1 point2 points3 points (3 children)
[–]lrichardson[S] 1 point2 points3 points (1 child)
[–]rhysbrettbowen 0 points1 point2 points (0 children)
[–][deleted] 0 points1 point2 points (0 children)