[JS] var, let, const 差異比較

[JS] var, let, const 差異比較

前言

這篇會來整理宣告變數傳統的var和ES6新語法let, const的差異比較。

var

傳統變數宣告,作用域(scope)為function,在function內宣告只有在function才有作用。如果在function外則為全域(global)。

1
2
3
4
function fn(){
var a = 'ABC';
};
console.log(a); // a is not defined
Read more
Your browser is out-of-date!

Update your browser to view this website correctly.&npsb;Update my browser now

×