Appearance
创建变量的六种方式
ES5
var
function
ES6
let
const
class
import
javascript
var a = 10
let b = 20
const c = 30
function d () {}
class E {}
import f from './index.js'