From eba11dd8c79819d8af9aa4ff39e35a901c0449d9 Mon Sep 17 00:00:00 2001 From: xhlwill Date: Sun, 4 Dec 2016 02:49:08 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20IIFE=20=E4=B8=8D=E4=B8=80=E5=AE=9A?= =?UTF-8?q?=E6=98=AF=E5=8C=BF=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (function a() { console.log('aaa'); }()); --- docs/let.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/let.md b/docs/let.md index 80c86e4..f5dff27 100644 --- a/docs/let.md +++ b/docs/let.md @@ -255,7 +255,7 @@ ES6允许块级作用域的任意嵌套。 }}}}; ``` -块级作用域的出现,实际上使得获得广泛应用的立即执行匿名函数(IIFE)不再必要了。 +块级作用域的出现,实际上使得获得广泛应用的立即执行函数(IIFE)不再必要了。 ```javascript // IIFE写法