Skip to content

Instantly share code, notes, and snippets.

@jasonrhodes
Created July 29, 2014 15:21
Show Gist options
  • Save jasonrhodes/da28989552bb06d96167 to your computer and use it in GitHub Desktop.
Save jasonrhodes/da28989552bb06d96167 to your computer and use it in GitHub Desktop.
Curry and NaN
function masala(divisor) {
return function (dividend) {
return dividend / divisor;
};
}
var naan = masala(0);
@jasonrhodes
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment