const runOnce = function () {
console.log('This will never run again');
};
runOnce();
// IIFE
(function () {
console.log('This will never run again');
const isPrivate = 23;
})();
// console.log(isPrivate); // isPrivate is scoped to that function so this wont work
(() => console.log('This will ALSO never run again'))();
{
const isPrivate = 23;
var notPrivate = 46;
}
// console.log(isPrivate); // isPrivate is scoped to that block so this wont work
console.log(notPrivate); // var doesn't have scope so this will work
Last active
June 30, 2023 11:33
-
-
Save vxhviet/e823ff95ae249cbbcbfb62d05a826921 to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment