Skip to content

Instantly share code, notes, and snippets.

@dikshadhote
Created June 6, 2022 05:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dikshadhote/c2df5e747bfcf3a0d9fa2751ca744be0 to your computer and use it in GitHub Desktop.
Save dikshadhote/c2df5e747bfcf3a0d9fa2751ca744be0 to your computer and use it in GitHub Desktop.
IIFE
var number = 4;
function test()
{
(function() {
if (number ==8) {
var number = 16;
}
})();
console.log(number );
}
test();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment