javascript30.com/ day6 const 의 내용 바꾸기 const로 정의한 변수는 다시 재설정이 불가능하다. 하지만 push를 이용해 data 삽입이 가능하다. data는 넣고싶은데, 변하지 않게 하고 싶을 때 사용하면 될 것 같다. 1 2 3 4 const cities = []; fetch(endpoint) .then(blob => blob.json()) .then(data => cities.push(...data)); cs cities가 const로 정의된 array지만 push를 이용해 data를 삽입한다. 참고) developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Statements/const 전개 구문 / spread syntax(.....