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

變數

參考資料