Skip to content

Instantly share code, notes, and snippets.

@joshblack
Created October 5, 2014 17:05
Show Gist options
  • Save joshblack/39b60aea802cdeaa9cee to your computer and use it in GitHub Desktop.
Save joshblack/39b60aea802cdeaa9cee to your computer and use it in GitHub Desktop.
function addSecretSalt() {
var secret = "JS Rules!";
return function(salt) {
return secret + salt;
}
};
// Usage
var secretAndSalt = addSecretSalt('salted'); // "JS Rules!salted"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment