ES6學習16(編程風格)

塊級做用域 let取代var ES6提出了兩個新的聲明變量的命令:let和const。其中,let徹底能夠取代var,由於二者語義相同,並且let沒有反作用。javascript 'use strict'; if (true) { let x = 'hello x'; var y = 'hello y' } for (let i = 0; i < 10; i++) { console.
相關文章
相關標籤/搜索