Skip to content

Instantly share code, notes, and snippets.

@oliverwebr
Last active June 11, 2020 23:03
Show Gist options
  • Save oliverwebr/7d7cd848344928f3726ca2e778e27c4e to your computer and use it in GitHub Desktop.
Save oliverwebr/7d7cd848344928f3726ca2e778e27c4e to your computer and use it in GitHub Desktop.
JavaScript Closures with Examples Explained - 1
(function () {
let myLuckyNumber = 5;
function main() {
let myLuckyNumber = 10;
console.log(myLuckyNumber);
}
main();
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment