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 trialVaish Kasi
674 PointsIs there a specific reason for using single quotes? Using double quotes too works fine. Could you explain the difference
I just tried the below code in the workspace and both of it works just fine.
alert('Hi This One'); document.write("<h1> testing in javascript <h1>");
Any specific reason for using the double quotes ?
2 Answers
Tijo Thomas
9,737 PointsIt's really just preference. Keep in mind, when working with JSON double quotes are required for valid JSON. Here's a link to a similar question.
edinjusupovic
5,664 PointsIt's preferential, however, sometimes it is necessary unless you wish to use the escape feature to ignore the single quote, as in my second example.
For example, say your code is;
alert("Hello, my name's john!");
alert('Hello, my name's john!");
The second alert is not executed properly as a result of the single quote in "name's" so instead of single quotes, we use double quotes in a case like this.