ES6-let变量--特性 3月 25 2021 Code 6 分钟 读完 (约 855 字) let 变量–特性let 不能重复声明防止变量污染 12let a = "Crushdada";let b = "Crushdada"; 阅读更多
ES6-理解let与块级作用域 3月 25 2021 Code 7 分钟 读完 (约 1058 字) ES6-理解 let 与块级作用域举个栗子1234567891011for (var i = 0; i < 3; i++) { //此处i默认为var类型,不写亦可 setTimeout(function () { console.log(i); //依次输出3,3,3 }, 1000);}for (let j = 0; j < 3; j++) { setTimeout(function () { console.log(j); //依次输出0,1,2 }, 1000);} 阅读更多