ES6 常用知识点ES6+ let 推荐使用let关键字替代 var关键字声明变量,因为 var存在诸多问题,比如: 越域 { var a = 1; let b = 2; } console.log(a); // 1 console.log(b); // ReferenceError: b is not defined Cactus li原创2024年4月2日...大约 7 分钟ES6sES6s