美文网首页
const 衡量

const 衡量

作者: 基本密码宋 | 来源:发表于2017-10-26 22:48 被阅读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)
    

    相关文章

      网友评论

          本文标题:const 衡量

          本文链接:https://www.haomeiwen.com/subject/vbylpxtx.html