摘要: 1、let 、const 均有块作用域的概念,只在块作用域内有效;var可以挂载到windows上,可以提升变量声明; eg: if(1){ let a = 1; const b = 2; var c = 3; } console.log(a); //报错 console.log(b); //报错 阅读全文
posted @ 2020-04-10 18:25 小敏- 阅读(65) 评论(0) 推荐(0)