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)
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)
本文标题:const 衡量
本文链接:https://www.haomeiwen.com/subject/vbylpxtx.html
网友评论