Skip to content

Instantly share code, notes, and snippets.

@aryak007
Last active March 28, 2018 18:55
Show Gist options
  • Select an option

  • Save aryak007/b3e7a2fe47fcd219963dc2346d142a14 to your computer and use it in GitHub Desktop.

Select an option

Save aryak007/b3e7a2fe47fcd219963dc2346d142a14 to your computer and use it in GitHub Desktop.
function outer() {
var inner = function()
{
console.log(stark);
}
var stark = "Jon Snow, the one true king";
return inner;
}
outer()(); //Q1. What will be the output of this example
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment