Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I know that in PHP, the only difference between double quotes and single quotes is the interpretation of variable inside a string and the treatment of escape characters.

In JavaScript, I often see double quotes used in strings. Is there a particular reason for that, or are single quotes exactly the same as double quotes?

share|improve this question
2  
Sorry, I took the liberty of replacing jQuery with Javascript, since jQuery has absolutely nothing to do with this. :) – deceze Jul 1 '10 at 1:16
17  
The double quote requires you to press the shift key. Huge energy saver to use single quotes. :) – MatrixFrog Sep 1 '10 at 0:02
possible duplicate of When to Use Double or Single Quotes in JavaScript – Dan D. Jul 3 '11 at 22:49

5 Answers

up vote 45 down vote accepted

You'll want to use single quotes where you want double quotes to appear inside the string (e.g. for html attributes) without having to escape them, or vice versa. Other than that, there is no difference.

share|improve this answer
Can u explain when to use double quotes n single quotes. Is there any diff between these two $("[href$='.jpg']"), $('[href$=".jpg"]') – Anshu Nov 21 '12 at 12:30

There is a difference in JSON, so I have started switching to using double-quotes as much as possible so that I don't make mistakes when dealing with JSON.

share|improve this answer
11  
Personally, I think it's much better not to try to read and write JSON yourself. I always JSON.parse and JSON.stringify, so that I'm free to use single quotes, double quotes, or even no quotes, without worrying about causing parse errors elsewhere. – MatrixFrog Sep 1 '10 at 0:02
3  
Please explain the difference in JSON? – staticboy Oct 9 '12 at 12:09
1  
@staticboy - The JSON standard specifies that all key,value pairs should be in double quotes. – wulfgar.pro Dec 23 '12 at 4:53

Absolutly no difference. FREE QUOTING YEEHHAAA

share|improve this answer

They are the same, I usually use single quotes but thats because I am a .net developer and asp.net in particular so it aids me in distinguishing between the 2 types of strings.

share|improve this answer
why a downvote? – Pharabus Jun 30 '10 at 12:50
1  
Probably because he hates ASP.Net -knuckle- – Péter Varga Apr 2 '12 at 11:59

I just found a difference. I'm making a mobile website, but I've mostly been testing on desktop Firefox. This works fine on Firefox:

var searchArray = searchValue.split(' '); // Split a string at the spaces.

BUT... it doesn't work on mobile Safari (iPhone 3GS running iOS 6.1). To make it work on mobile Safari, you have to use double quotes:

var searchArray = searchValue.split(" "); // Split a string at the spaces.

If you don't use double quotes, it doesn't split, it just puts the whole string into the first array element. That was a real puzzler for me and took quite a while to figure out; I dunno what even made me try switching the quotes, because I thought they were always supposed to act the same way. I haven't found anything on this problem by googling, so maybe this will help someone.

share|improve this answer
1  
FYI: I tested on an iPhone 5 / iOS 6.1 and did not see this problem. – DG. Feb 4 at 14:02
1  
It's highly improbable that this is true. Otherwise a lot of webpages would be broken on the iOS. – Juhana Mar 26 at 17:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.