3.常量

创建一个文件

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.常量)