Skip to content

Instantly share code, notes, and snippets.

@daytonn
Last active August 29, 2015 14:15
Show Gist options
  • Select an option

  • Save daytonn/ec5326a6e73685da6747 to your computer and use it in GitHub Desktop.

Select an option

Save daytonn/ec5326a6e73685da6747 to your computer and use it in GitHub Desktop.
CWCPOOJS - closure
var tellSecrets = function() {
var secret = "shh, don’t tell anyone";
return function() {
console.log(secret);
};
}();
tellSecrets();
console.log(secret); // undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment