Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save isublimity/e34c0bd2087e9a37619b09b7f675d149 to your computer and use it in GitHub Desktop.
Save isublimity/e34c0bd2087e9a37619b09b7f675d149 to your computer and use it in GitHub Desktop.
bar.js
//
// ------------------------------
function bar() {
const i = 1;
function inner() {
return i + 1;
}
setTimeout(() => {
const i = 10;
const result = inner();
console.log(result);
}, 100);
}
// bar();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment