摘要: let,const 用途和var类似 var name="zac";while(true){ var name="nic"; console.log(name); break;}console.log(name); // nic // nic 两次输出都是nic 因为es5 只有全局作用域和函数作用 阅读全文
posted @ 2017-08-15 15:42 键盘不错 阅读(110) 评论(0) 推荐(0) 编辑