const 衡量
2017-10-26 本文已影响7人
基本密码宋
const是衡量 表示只能初始化一个的。类似于java中final
const 强调的是赋值的过程,并不是具体的那个值的大小。
const index = 1;
var index = 2;
console.log(index)
这样就会报错。
当然const 也可以进行填写值的。用push方法
const index = [1, 2, 3];
index.push(1);
index.push(2)
console.log(index)