From 381ed546a7b575a121ed7421da4b03a6a1e1bbf2 Mon Sep 17 00:00:00 2001 From: bicijinlian Date: Thu, 27 Jul 2023 10:57:53 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=B4=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../wwwroot/ES6Study/ES6Study.js | 10 ----- .../wwwroot/ES6Study/Index.html | 41 ------------------- 2 files changed, 51 deletions(-) delete mode 100644 BlazorStudy.BootstrapLatest/wwwroot/ES6Study/ES6Study.js delete mode 100644 BlazorStudy.BootstrapLatest/wwwroot/ES6Study/Index.html diff --git a/BlazorStudy.BootstrapLatest/wwwroot/ES6Study/ES6Study.js b/BlazorStudy.BootstrapLatest/wwwroot/ES6Study/ES6Study.js deleted file mode 100644 index 2614993..0000000 --- a/BlazorStudy.BootstrapLatest/wwwroot/ES6Study/ES6Study.js +++ /dev/null @@ -1,10 +0,0 @@ -//()()写法:后面括号指的是"立即执行一次前面括号里的代码(不只是函数,全部执行一次)" -(() => { - const f1 = () => { console.log("---- 执行函数 f1 ----"); }; - const f2 = () => { console.log("---- 执行函数 f2 ----"); }; - console.log("====================== ES6学习 ====================="); - f1(); - f2(); - - //其它业务逻辑 -})(); \ No newline at end of file diff --git a/BlazorStudy.BootstrapLatest/wwwroot/ES6Study/Index.html b/BlazorStudy.BootstrapLatest/wwwroot/ES6Study/Index.html deleted file mode 100644 index 8a47707..0000000 --- a/BlazorStudy.BootstrapLatest/wwwroot/ES6Study/Index.html +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - ES6 学习 - - - - - -
-
-
- ES6学习:请在开发者工具里查看日志输出 -
-
-
-
-//()()写法:后面括号指的是"立即执行一次前面括号里的代码(不只是函数,全部执行一次)"
-(() => {
-    const f1 = () => { console.log("---- 执行函数 f1 ----"); };
-    const f2 = () => { console.log("---- 执行函数 f2 ----"); };
-    console.log("====================== ES6学习 =====================");
-    f1();
-    f2();
-
-    //其它业务逻辑
-})();
-                    
-
-
-
-
- - - - - -