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 trial

JavaScript JavaScript Basics (Retired) Making Decisions with Conditional Statements Improving the Random Number Guessing Game

A Question not related to this topic

Just curious i noticed that Dave uses single quote (' ') instead of double quote (" "). Is it a preference thing or is there an advantage for using single quote

1 Answer

Emmanuel C
Emmanuel C
10,636 Points

In javascript there is no difference, and it's really personal preference.

In other languages, Java, C#, singles quotes signify a char type variable while double quotes would signify a string. And if I recall correctly, in said languages if you tried to wrap a string in single quotes, you would get a compilation error.

Thank you