Skip to content

Instantly share code, notes, and snippets.

@fastfrwrd
Last active August 29, 2015 13:55
Show Gist options
  • Save fastfrwrd/8742497 to your computer and use it in GitHub Desktop.
Save fastfrwrd/8742497 to your computer and use it in GitHub Desktop.
(function() {
function dis(noun) {
var str = "When a " + noun + " starts to "
return function(verb) {
return str + verb
}
}
var d = dis("fire")
alert(d("burn"))
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment