Skip to content

Instantly share code, notes, and snippets.

@helabenkhalfallah
Created May 15, 2021 20:33
Show Gist options
  • Save helabenkhalfallah/9010b6d123ebbb171dac2c381c32c47f to your computer and use it in GitHub Desktop.
Save helabenkhalfallah/9010b6d123ebbb171dac2c381c32c47f to your computer and use it in GitHub Desktop.
JS Closure
const outerFunc = () => {
// the outer scope
let outerVar = 'I am from outside!';
const innerFunc = () => {
// the inner scope
console.log(outerVar);
}
return innerFunc;
}
const myInnerFunc = outerFunc();
myInnerFunc(); // 'I am from outside!'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment