摘要: 一、变量声明let、const /** * @变量声明 */ "use strict" // 1.变量越域 { var a = 1; let b = 2; } console.log(a);// 1 console.log(b);// b is not defined // 2.不可多次声明同一变量 阅读全文
posted @ 2020-07-27 17:32 想~(●—●)肥~ 阅读(137) 评论(0) 推荐(0) 编辑