Skip to content

Instantly share code, notes, and snippets.

@DekusDenial
Created October 7, 2013 04:36
Show Gist options
  • Save DekusDenial/6862605 to your computer and use it in GitHub Desktop.
Save DekusDenial/6862605 to your computer and use it in GitHub Desktop.
Y Combinator in Javascript
function Y(f) {
var g = function(h) {
return function(x) {
return f(h(h))(x);
};
};
return g(g);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment