The two lines below process exactly the same since Javascript ignores whitespace.
The two variables below are different due to the variation in uppercase and lowercase letters in the variable naming. They are treated as two separate objects because Javascript is case sensitive.
When creating variable and function names do not start them with a number. You can use numbers within the name, but just not as the first character. Another good rule of thumb is to use only letters, numbers and underscores when naming things.
There are some reserved words that are part of Javascript syntax that we should try not use as variable/function names when we create and use objects while coding Javascript. In some cases using the reserved words can make your script operate unexpectedly.