码迷,mamicode.com
首页 > 其他好文 > 详细

[ES6] 05. The leg keyword -- 3. Block Scope

时间:2014-11-20 01:14:15      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   color   sp   strong   on   div   

In ES6, IIFE is not necessary:

// IIFE写法
(function () {
    var tmp = ...;
    ...
}());

// 块级作用域写法
{
    let tmp = ...;
    ...
}

 

另外,ES6也规定,函数本身的作用域,在其所在的块级作用域之内

function f() { console.log(‘I am outside!‘); }
(function () {
  if(false) {
    // 重复声明一次函数f
    function f() { console.log(‘I am inside!‘); }
  }

  f();
}());

上面代码在ES5中运行,会得到“I am inside!”,但是在ES6中运行,会得到“I am outside!”

 

(function () {
    if(true) {
        // 重复声明一次函数f
        function f() { console.log(‘I am inside!‘); }
        f();
    }


}());
function f() { console.log(‘I am outside!‘); }

上面代码在ES6中运行,会得到“I am inside!”

[ES6] 05. The leg keyword -- 3. Block Scope

标签:style   blog   io   ar   color   sp   strong   on   div   

原文地址:http://www.cnblogs.com/Answer1215/p/4109521.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!