Introduction
Variables store information you want to use later. Using let and var helps you keep your data safe and clear.
When you want to keep a value that never changes, like your app's name.
When you need to store user input that can change, like a score or a name.
When you want Swift to guess the type of your data to write less code.
When you want to avoid mistakes by making some values constant.
When you want to update a value many times during your app's use.