In JavaScript, 'const' is a keyword used to declare variables that have a constant value, meaning their value cannot be reassigend after their initial assignment.
자바스크립트에서, 콘스트는 상수값을 가지는 변수를 선언하는 키워드이며, 최초 할당 이후 재할당이 되지 않는다는 것을 의미한다.
In other words, once a value is assigned to a const variable, that value remains constant throughout the scope of the variable's existence.
다른 말로, 값이 콘스트 변수에 할당이 되면, 값은 변수의 전역상태로 유지한다.
You use const to declare a variable and assign an initial value to it. Once the initial value is assigned, you cannot change it.
The key feature of const variables is that their assigned value cannot be modified or reassigned.
콘스트 변수의 특징은 할당된 값이 변경되거나 재 할당이 되지 않는 다는 것이다.
Like let, const variables are block-scoped, meaning they are only accessible wihtin the block of code where they are defined.
let과 같이, 콘스트 변수는 block-scoped이며, 정의된 코드의 블록 내에서만 접근이 가능함을 뜻한다.
While not enforced by the language, it's a common convention to name constants in uppercase letters.
언어에 의해 시행되지 않을 동안, 대문자로 상수의 이름을 지정하는 관례가 있다.