Skip to content

Instantly share code, notes, and snippets.

@vxhviet
Last active June 30, 2023 11:33
Show Gist options
  • Save vxhviet/e823ff95ae249cbbcbfb62d05a826921 to your computer and use it in GitHub Desktop.
Save vxhviet/e823ff95ae249cbbcbfb62d05a826921 to your computer and use it in GitHub Desktop.

[JavaScript] - Immediately Invoked Function Expressions (IIFE)

SOURCE

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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment