Introduction
We use const to create variables that should not change. It helps keep our code safe and clear.
When you want to store a value that should never change, like a fixed number or a name.
When you want to avoid accidentally changing important data in your program.
When you want to make your code easier to understand by showing which values stay the same.
When working with values that represent constants, like configuration settings or math constants.
When you want to improve code reliability by preventing reassignment of variables.