let,const,var 区别

251 阅读1分钟

1、用let,const定义的全局变量,绑定的是Script下,无法绑定到window下,var可以。 2、let,const,var都可以绑定到local对象下