Skip to content

Instantly share code, notes, and snippets.

@AminBusiness
Created November 8, 2018 21:10
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 AminBusiness/248c449579d8b696d4ca7f404f1bd39c to your computer and use it in GitHub Desktop.
Save AminBusiness/248c449579d8b696d4ca7f404f1bd39c to your computer and use it in GitHub Desktop.
<script id="jsbin-javascript">
//What is the ouput of this function
var num = 4;
function outer()
{
var num = 2
function inner()
{
num++;
var num = 3;
console.log(num)
}
inner();
}
outer();
</script>
//What is the ouput of this function
var num = 4;
function outer()
{
var num = 2
function inner()
{
num++;
var num = 3;
console.log(num)
}
inner();
}
outer();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment