Introduction
Use let to create values that do not change. This helps keep your program safe and clear.
When you have a value that should never change, like the number of days in a week.
When you want to avoid mistakes by accidentally changing a value later.
When you want to make your code easier to understand by showing which values stay the same.
When you store fixed settings or constants in your app.
When you want to improve performance by letting the system know the value is constant.