
const로 선언하면 안 바뀌는 것 까진 이해했습니다.
그런데 안 바꾸고 출력하는 건 왜 안될까요?
에러메시지도 똑같아요~

작성한 코드 및 에러 메세지
오류 발생 시, 작성한 코드 전체와 에러 메시지를 첨부해 주세요.
Tip 1) </> 아이콘을 눌러 코드박스를 만들어 보세요.
Tip 2) Ctrl+A(맥의 경우 Command+A) 단축키로 코드를 한 번에 선택할 수 있어요!
const velueBox = 'First'
valueBox = 'Last'
console.log(valueBox)
VM1421:1 Uncaught SyntaxError: Identifier 'velueBox' has already been declared
const velueBox = 'First'
console.log(valueBox)
VM1439:1 Uncaught SyntaxError: Identifier 'velueBox' has already been declared
