var,let,const描述不正确的是
let和const都是块级作用域,var是函数级作用域
var存在变量提升,let和const不存在变量提升
const不可修改,声明时,直接初始化,var,let可修改
let,var允许在相同的作用域内声明同一变量