Accessing an element eg. car[0] will return "wheels" or car[i] if accessing variable from a loop
Explain all the use cases for braces {}
To declare an object eg. var car = {}
To enclose code eg. when creating a loop or function: function myFunction () {what function does here}
Explain all the use cases for single quotes ' '
To define a string eg 'spaghetti'
If there are double quotes within the string you are defining it is best to use single quotes around the string eg. 'Harry said, "Go home" '
Explain all the use cases for double quotes " "
To define a string eg "spaghetti"
If there is a single quote within the string you want to define, it is best to use double quotes to define the string eg "This isn't going to affect the string"