【ES6總結】

let const 總結 let const 不會污染全局變量 不會聲明到window上 let a=1; console.log(window.a)//undefind 複製代碼 let const 不存在變量提高 (他所聲明的變量必定要在聲明後使用,不然報錯) a=1; let a=2;//報錯 複製代碼 let const 不容許在用一個做用域中重複聲明同一個變量 let b=1; let
相關文章
相關標籤/搜索