Hoisting IV
2022年5月1日小于 1 分钟
Hoisting IV
Question
What does the code snippet to the right output by console.log
?
Snippet
let foo = 10
function func1() {
console.log(foo)
var foo = 1
}
func1 ()
function func2() {
console.log(foo)
let foo = 1
}
func2 ()