会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Code Dog
CnBlogs
Home
New Post
Contact
Admin
Subscription
2021年5月12日
var,let和const的区别是什么?
1.var声明的变量会挂载在window上,而let和const声明的变量不会 2.var声明变量存在变量提升,let和const不存在变量提升 3.let和const声明形成块作用域 4.同一作用域下let和const不能声明同名变量,而var可以 5.const一旦声明必须赋值,不能使用null
Read More
posted @ 2021-05-12 15:43 Code_Dog
Views(164)
Comments(0)
Diggs(0)
Edit
公告