Assignment004Ja

JavaScript - Using quotes

You are able to use single quotes or double quotes in JavaScript.
The following quotes can be used to create string variables:
var weirdo1 = 'Edgar';
var weirdo2 ="Cesar";
Single quotes and double quotes are interchangeable, but be careful.
A problem you might encounter is using quotes within quotes.