let不能重复声明
let不存在变量提升
let是块级作用域

const声明后不允许改变
const不允许重新赋值
const必须声明的时候直接初始化
const是块级作用域