Variable 变数

Node.js Variable 变数

定义变数

什麽是 var, const, let

vares6 出现之前定义变数的方法。

const 是常数一宣告就要指定值而且也不能被赋值 (不可再赋值也就是不能用 = 让他有新的位址),适合定义颜色这种不会变动的 ;

let 跟 var 相当像,最大不同就是 varfunction scopeletconstblock scope ( function、if、for 都是 block scope)

const means that a variable’s value never changes, so const can’t be re-assigned the value ;

let is similar with var , they’re all variable declaration, but the biggest difference is var is function scope but let , const is block scope

变数

参考资料