Skip to content

Instantly share code, notes, and snippets.

@jlggross
Last active April 19, 2021 01:37
Show Gist options
  • Save jlggross/233bdc2cacbf9148c1157f123d41f75d to your computer and use it in GitHub Desktop.
Save jlggross/233bdc2cacbf9148c1157f123d41f75d to your computer and use it in GitHub Desktop.
IIFE Example
var a = (function () {
var name = "João"
return name
})()
console.log(a) // "João"
var b = (function () {
console.log("----")
})()
console.log(b) // undefined - there is no return to b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment