function abc() | |
{ | |
var foo = 9; | |
if(true){ | |
let foo = 89; | |
console.log(foo); | |
} | |
console.log(foo); | |
} | |
abc(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
function abc() | |
{ | |
var foo = 9; | |
if(true){ | |
let foo = 89; | |
console.log(foo); | |
} | |
console.log(foo); | |
} | |
abc(); |