JavaScript const 선언은 다른 값에 재할당하거나 나중에 다시 선언할 수 없는 변수를 만듭니다. ES2015에서 도입되었습니다.
다음은 JavaScript const 선언을 위한 코드입니다 -
예시
<!DOCTYPE html> <html> <head> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } </style> </head> <body> <h1>Const example</h1> <button class="Btn">CLICK HERE</button> <p class="sample"></p> <h3>Click the above button to try changing const value</h3> <script> let sampleEle = document.querySelector(".sample"); const a = 33; sampleEle.innerHTML = "a = " + a + "<br>"; document.querySelector(".Btn").addEventListener("click", () => { try { a = 44; } catch (err) { sampleEle.innerHTML += "Error : " + err; } }); </script> </body> </html>
출력
상수 값을 변경하려면 'CLICK HERE' 버튼을 클릭하면 -