👉 The `const` keyword in JavaScript is used to declare constants, which are values that cannot be changed once they are assigned. Constants are immutable, meaning their values remain fixed throughout the execution of a program. This feature enhances code reliability and predictability by preventing accidental modifications to variables that should remain constant. Constants are typically used for values like mathematical constants, configuration settings, or other data that should not be altered.