const,var,let区别
摘要:
1、let是块级作用域,函数内部使用let定义后,对函数外部无影响。 // let 块级变量 在{}内申明 if (true){ let a=10; console.log(a); if(1){ let b=20; console.log(a); }else{ // console.log(b);e 阅读全文
posted @ 2020-05-14 23:32 Zeroao 阅读(352) 评论(0) 推荐(0) 编辑