Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialChris Reich
15,163 PointsWhat is the difference between using single and double quotes in js. Which should I use for writing concatenated strings
I was taught to write strings "like this" but I see the instructor in the videos writing things like( '<h1>You guessed the number!</h1>'); Is there a difference between the using the single and double quotes and what is it?
2 Answers
Nicholas Olsen
Front End Web Development Techdegree Student 19,342 PointsIn Javascript there is no meaningful difference between the two. In practice, single quotes are just more convenient. Also, you need to escape whatever type of quotes you are using.
var stringOne = 'It\'s a girl!';
var stringTwo = "It's a girl!";
var stringThree = 'He said, "I don\'t want to."';
var stringFour = "He said,\"I don't want to.\"";
Things can also get hairy when using regular expressions.
My personal preference is to just stick to one, and use the other when you have to.
shadrackndacayisenga
Python Web Development Techdegree Student 14,189 PointsThere is no preferred method, either single or double quotes are OK.. You can use either. However if you are using one form of quote in the string, its a good idea use the other as the literal.
alert('Say Hello'); // Say Hello
alert("Say Hello"); // Say Hello
alert('Say "Hello"'); // Say "Hello"
alert("Say 'Hello'"); // Say 'Hello'
Nicolas Hampton
44,638 PointsNicolas Hampton
44,638 PointsAlso, keep in mind that when you get to formatting JSON data, valid JSON only takes the double quotes. The choice to use either single or double in the rest of a Javascript project is personal, however, just try to keep it consistent to avoid hard to find errors.
Chris Reich
15,163 PointsChris Reich
15,163 PointsThanks. The examples were helpful.