Skip to content

Instantly share code, notes, and snippets.

@miry
Last active August 29, 2015 14:06
Show Gist options
  • Save miry/92ea14b50e83ffc1ec54 to your computer and use it in GitHub Desktop.
Save miry/92ea14b50e83ffc1ec54 to your computer and use it in GitHub Desktop.
var say = function(string1) {
var result = function(string2) {
return say(string1 + " " + string2);
}
result.prototype = new String();
result.toString = function() {
return string1;
}
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment