ES6 IIFE 函数 ES6 函数挂起 ES6 IIFE 函数实例 ES6 IIFE 函数 var main = function() { (function() { for(var x = 0;x<5;x++) { console.log(x); } })(); console.log("x can not be accessed outside the block scope x value is :"+x); } main(); ES6 函数挂起 ES6 IIFE 函数实例