Skip to content

Instantly share code, notes, and snippets.

@jonahlyn
Created May 6, 2019 19:47
Show Gist options
  • Save jonahlyn/990672f4ecffe41823134336b80f19d0 to your computer and use it in GitHub Desktop.
Save jonahlyn/990672f4ecffe41823134336b80f19d0 to your computer and use it in GitHub Desktop.
Question

What is the outcome of the two alerts below?

var foo = "Hello"; 
(function() { 
    var bar = " World"; 
    alert(foo + bar); 
})(); 
alert(foo + bar);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment