let a = 1;const b = a;
a = 2;console.log(a) //2console.log(b) //1于是const定義的常量不會(huì)被重新賦值,除非是對(duì)象類(lèi)型,那這樣子?for(let a = 1; a < 5; a++){ const b = a; console.log(b) // 1 2 3 4 undefined}為毛 for循環(huán)里面 const 可以被重新賦值?感謝!
const定義的常量在for循環(huán)里面可變?
湖上湖
2018-09-23 21:40:16