Skip to content

Instantly share code, notes, and snippets.

@fonzerelly
Last active September 10, 2019 19:22
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save fonzerelly/7779253 to your computer and use it in GitHub Desktop.
Save fonzerelly/7779253 to your computer and use it in GitHub Desktop.
simple example for the usage of lodash.js _.partial
var add = function (a, b) {
return a + b;
};
var add5 = _.partial(add, 5);
add(3,4);
// 7
add5(3);
// 8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment