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 AJAX Basics (retiring) AJAX and APIs Adding jQuery

Steven Romano
Steven Romano
10,024 Points

Why is button in single quotes when the click method is use. Why is the button in double quotes in the removeClass?

I assume it doesn't matter but I figured I would ask. I tried different combinations doubles around both and singles around both and the code still worked I was curious why you would write it this way.

Thanks!

Lush Sleutsky
Lush Sleutsky
14,044 Points

Doesn't really matter, so long as you're consistent with it

1 Answer

Dave McFarland
STAFF
Dave McFarland
Treehouse Teacher

Hi Steven Romano

Lush Sleutsky has the answer -- JavaScript doesn't care which type of quote marks you use, single or double, as long as you match the type for each pair. In other words use a single quote with another single quote like this var name = 'Steven', and a double quote with another doule quote like this: var name = "Steven".