__玄清__ 发表于 2021-7-21 13:28:24

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的声明不会在提升到外部作用域的顶部吗?

wp231957 发表于 2021-7-21 14:16:20

https://blog.csdn.net/qq_39712029/article/details/80951958

__玄清__ 发表于 2021-7-21 16:33:51

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;
}

fumouren 发表于 2021-8-17 17:08:49

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]
查看完整版本: js函数提升