当前位置:  开发笔记 > 编程语言 > 正文

为什么函数被描述为块作用域

如何解决《为什么函数被描述为块作用域》经验,为你挑选了1个好方法。

我在ES6上读这本书,有以下内容:

功能声明......

像块一样是块状的.

在全局对象中创建属性(在全局范围内),如var.

被提升:独立于其范围中提到的函数声明的位置,它始终在范围的开头创建.

AFAIK,函数一直是函数作用域.我认为ES6中的某些内容可能已经发生了变化,但是没有:

function a() {
    if (true) {
        // defined inside the block and is hoisted to the top of that block
        z();
        function z() { console.log ('z')}
    }

    z();
}

// but is also hoisted to the function scope
a(); // works OK

实际上,它们似乎是块范围的:

function a() {
    if (false) {
        // defined inside the block and is hoisted to the top of that block
        z();
        function z() { console.log ('z')}
    }

    z(); // error
}

那么它在ES6中有所改变吗?



1> T.J. Crowder..:

AFAIK,函数一直是函数作用域.我觉得ES6可能会有所改变

确实如此:在ES2015之前,该规范并未涵盖块内声明的功能.支持它们是允许的扩展,但不是规范的一部分.

因此,规范必须跳过箍,特别是在浏览器的松散模式下.

严格模式下,您将在兼容引擎上找到函数声明确实是块作用域的:

"use strict";

function test() {
  if (true) {
    function foo() {
      console.log("foo called");
    }
  }
  try {
    foo(); // ReferenceError
  } catch (e) {
    console.log("Error: " + String(e));
  }
}
test();
推荐阅读
ar_wen2402851455
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有