打赏
摘要: let与var、const <script> // var 声明的变量往往会越域 // let 声明的变量有严格局部作用域 { var a = 1; let b = 2; } console.log(a); // 1 console.log(b); // ReferenceError: b is n 阅读全文
posted @ 2021-06-08 23:44 每天都要学一点 阅读(43) 评论(0) 推荐(0) 编辑