Introduction
Mutable variables let you change the value stored in them after you create them. This helps when you want to update information as your program runs.
When you want to keep track of a score that changes during a game.
When you need to update a counter in a loop.
When you want to store user input that can change.
When you want to modify a value based on conditions.
When you want to build a value step-by-step.