Variables
Variables are containers that save data values.
Variables are assigned a data type. Their scope is limited to the code block where they are defined.
Variables can be declared with an initial value:
double discount = 1.0;
String name ="John Doe";
Or without an initial value:
int numberOfCustomers;
String name;
Variables can also be final, meaning that their value cannot be modified.
finalString name = "John Doe";