vue learning and let const

let:

es6 added let command, used to declare variables. Its usage is similar to var, but variable declared valid only in the block where the let command.

const:

const Declares a read-only constant. Once declared, the value of the constant can not be changed.

Guess you like

Origin www.cnblogs.com/cngsl/p/11963546.html