const 평가

const 는 하나만 초기 화 할 수 있다 는 것 을 평가 합 니 다.자바 에서 final const 가 강조 하 는 것 은 할당 과정 이지 구체 적 인 값 의 크기 가 아 닙 니 다.
const index = 1;
var index = 2;
console.log(index)

이렇게 하면 잘못 보고 할 것 이다.
물론 const 도 값 을 작성 할 수 있 습 니 다.push 방법 으로
const index = [1, 2, 3];
index.push(1);
index.push(2)
console.log(index)

좋은 웹페이지 즐겨찾기