包含let 的特性,另外还有只读的特性,read-only,constant value

常见的实践是,常量用大写字母和下划线命名

const MY_PET = 'Cat';

immutable values

assigned with const, it cannot be reassigned. will throw an error.

remain constant

变量声明默认使用const,除非明确会被更改,换成let

const 声明的array,只是不能再指向其它值、其它array

array 还是可以.push .pop 修改下标指向的值的