Skip to content

Instantly share code, notes, and snippets.

@monkyz
Created February 2, 2013 02:15
Show Gist options
  • Save monkyz/4695747 to your computer and use it in GitHub Desktop.
Save monkyz/4695747 to your computer and use it in GitHub Desktop.
nasty code
function addThree(x) {return x + 3;};
function composed(func) {
return function(x) {
return func(func(x))
}
};
composed(addThree)(4);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment