const(상수) 중복선언 에러

imjingu·2023년 7월 13일
0

개발공부

목록 보기
102/481

상수 const 는 변경하지 않을 데이터를 선언
const는 이미 선언한 상수에 대해 중복해서 선언할 수 없고, 상수의 값을 재지정할 수도 없음.

변경할 가능성이 있으면 변수를 사용하고, 그렇지 않다면 상수를 사용.
다른 언어보다 상수를 많이 사용.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <script>
        

        const divsion_value_01 = 100;
        const divsion_value_01 = 100;
        document.write(divsion_value_01); //Uncaught SyntaxError: Identifier 'divsion_value_01' has already been declared (at
        
        const divsion_value_02 = 100;
        divsion_value_02 = 1000;
        document.write(DIVSION_VALUE_02); // 상수는 값을 재지정 불가능, 변경할려고 했기 떄문에 에럭 뜸.

        // 상수는 선언과 동시에 무조건 초기화 해야함.
        const divsion_value_03;
    </script>
</head>
<body>
    
</body>
</html>

0개의 댓글