js函数提升
console.log("line1 a:", typeof a); // ?var a = 1;
function test() {
console.log("line4 a:", typeof a); // ?
var a = 1;
return function a() {
return 1;
}
}
test();
上面这段代码中,为什么line1打印的undefined,执行函数test后,返回值函数a的声明不会在提升到外部作用域的顶部吗? https://blog.csdn.net/qq_39712029/article/details/80951958 wp231957 发表于 2021-7-21 14:16
https://blog.csdn.net/qq_39712029/article/details/80951958
这篇博客我看了,但是没有说明返回值是函数定义的时候这种情况呀。
function test() {
console.log("a:", typeof a); // "undefined"
return function a() {
return 1;
}
}
和下面这种情况不一样
function test() {
console.log("a:", typeof a); // "function"
function a() {
return 1;
}
return;
} var a;
console.log("line1 a:", typeof a); // ?
a = 1;
function test() {
var a;
console.log("line4 a:", typeof a); // ?
a = 1;
return function a() {
return 1;
}
}
test();
页:
[1]