From d569703fb4d9ada613fe8869ef50d2e3861210ba Mon Sep 17 00:00:00 2001 From: ruanyf Date: Tue, 13 Feb 2018 00:20:38 +0800 Subject: [PATCH] docs(module-loader): delete #607 --- docs/module-loader.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/module-loader.md b/docs/module-loader.md index 6d196ef..4e7f86d 100644 --- a/docs/module-loader.md +++ b/docs/module-loader.md @@ -89,8 +89,6 @@ const x = 1; console.log(x === window.x); //false console.log(this === undefined); // true - -delete x; // 句法错误,严格模式禁止删除变量 ``` 利用顶层的`this`等于`undefined`这个语法点,可以侦测当前代码是否在 ES6 模块之中。