Appearance
禁止修改const声明的变量
const关键字声明的变量是常量,不允许修改。
const
如果一个变量需要修改,使用let
const foo = 520; foo = 1314;
let foo = 520; foo = 1314;