-
-
Save paoloantinori/bd149b116036e9b724d495074cac6943 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var f = function(x){ | |
var g = function(prev, x){ | |
if(typeof x !== 'undefined'){ | |
return prev + "l"; | |
} else{ | |
return g.bind(this, prev + "o"); | |
} | |
} | |
return g("f", x); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment