3.常量

作者: Flying_thoughts | 来源:发表于2018-09-12 22:03 被阅读0次

    创建一个文件

    touch src/const.js

    const.js中内容

    ```

    // ES5 中常量的写法

    Object.defineProperty(window, "PI2", {

        value: 3.1415926,

        writable: false,    // 这个是只读型

    })

    console.log(window.PI2)

    // ES6 的常量写法

    const PI = 3.1415926

    console.log(PI)

    // PI = 4    (只读型,赋值会报错)

    ```

    运行需要在index.js中引入

    ```

      import "./src/const"

    ```

    相关文章

      网友评论

          本文标题:3.常量

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