Skip to content

Instantly share code, notes, and snippets.

@suhailgupta03
Created August 3, 2023 15:57
Show Gist options
  • Save suhailgupta03/733a05f9a0b904c999d69b72d443ed4e to your computer and use it in GitHub Desktop.
Save suhailgupta03/733a05f9a0b904c999d69b72d443ed4e to your computer and use it in GitHub Desktop.
// IIFE
// Immediately Invoked Function Expression
(function() {
var x = ".."
var y = "...."
var z = "......"
console.log(x)
console.log(y)
console.log(z)
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment