console.log("double"); vs console.log('single');
I see more and more JavaScript libraries out there using single quotes when handling strings. What are the reasons to use one over the other? I thought they're pretty much interchangeable.
|
I see more and more JavaScript libraries out there using single quotes when handling strings. What are the reasons to use one over the other? I thought they're pretty much interchangeable. |
||||
| show 2 more comments |
|
I wouldn't say there is a preferred method, you can use either. However If you are using one form of quote in the string, you might want to use the other as the literal.
The most likely reason is programmer preference / API consistency. |
|||||||||||||||||||||
|
|
If you're dealing with JSON, it should be noted that strictly speaking, JSON strings must be double quoted. Sure, many libraries support single quotes as well, but I had great problems in one of my projects before realizing that single quoting a string is in fact not according to JSON standards. |
|||||||||||||||
|
|
Double quotes will wear your shift key out faster :) |
|||||||||
|
|
I'd like to say the difference is purely stylistic, but I'm really having my doubts. Consider the following example:
In Safari, Chrome, Opera, and Internet Explorer (tested in IE7 and IE8), this will return the following:
However, Firefox will yield a slightly different result:
The single quotes have been replaced by double quotes. (Also note how the indenting space was replaced by four spaces.) This gives the impression that at least one browser parses JavaScript internally as if everything was written using double quotes. One might think, it takes Firefox less time to parse JavaScript if everything is already written according to this 'standard'. Which, by the way, makes me a very sad panda, since I think single quotes look much nicer in code. Plus, in other programming languages, they're usually faster to use than double quotes, so it would only make sense if the same applied to JavaScript. Conclusion: I think we need to do more research on this. Edit: This might explain Peter-Paul Koch's test results from back in 2003.
|
|||||||||||||||||||
|
|
The only difference is demonstrated in the following:
So, it's only down to how much quote escaping you want to do. Obviously the same applies to double quotes in double quoted strings. |
|||||||||||||||||||
|
|
If you're doing inline JavaScript (arguably a "bad" thing, but avoiding that discussion) single quotes are your only option for string literals, I believe. e.g., this works fine:
But you can't wrap the "hi" in double quotes, via any escaping method I'm aware of. Even So, if the name of the game is consistency, and you're going to do some inline JavaScript in parts of your app, I think single quotes are the winner. Someone please correct me if I'm wrong though. |
|||||||||||||||||||||
|
|
Strictly speaking, there is no difference in meaning; so the choice comes down to convenience. Here are several factors that could influence your choise:
|
|||
|
|
|
Technically there's no difference, it's only matter of style and convention. Douglas Crockford recommends using single quotes for internal strings and double quotes for external (by external we mean those to be displayed to user of application, like messages or alerts). I personally follow that. |
|||||
|
|
Not sure if this is relevant in todays world, but double quotes used to be used for content that needed to have control characters processed and single quotes for strings that didn't. Basically the compiler will run string manipulation on a double quoted string while leaving a single quoted string literally untouched. This used to lead to 'good' developers choosing to use single quotes for strings that didn't contain control characters like \n or \0 (not processed within single quotes) and double quotes when they needed the string parsed (at a slight cost in cpu cycles for processing the string). |
|||
|
|
|
It's mostly a matter of style and preference. There are some rather interesting and useful technical explorations in the other answers, so perhaps the only thing I might add is to offer a little worldly advice.
|
||||
|
|
|
I would use double quotes when single quotes cannot be used and vice versa:
Instead of:
|
|||
|
|
|
I hope I am not adding something obvious, but I have been struggling with django and ajax and JSON on this. Assuming that in your HTML code you do use double quotes, as normally should be, I highly suggest to use single quotes for the rest in javascript. So I agree with @ady but with some care. My bottom line is: In javascript probably it doesn't matter, but as soon as you embed it inside HTML or the like you start to get troubles. You should know what is actually escaping, reading, passing your string. My simple case was:
You can spot the \' in the third field of showThis. The double quote didn't work! It is clear why, but it is also clear why we should stick on single quotes... .. I guess.. This case is a very simple HTML embedding, the error was generated by a simple copy/paste from a 'double quoted' javascript code. So to answer the question: Try to use single quotes while within HTML. It might save a couple of debug issues.. |
||||
|
|
|
One more thing that you might want to consider as a reason for the shift from double quotes to single quotes is the increase in popularity of server side scripts. When using PHP you can pass variables and parse javascript functions using strings and variables in PHP. If you write a string and use double quotes for your PHP you won't have to escape any of the single quotes and PHP will automatically retrieve the value of the variables for you. Example:I need to run a javascript function using a variable from my server.
This saves me a lot of hassle in having to deal with joining strings, and I can effectively call a javascript from PHP. This is only one example, but this may be one of several reasons why programmers are defaulting to single quotes in javascript. Quote from PHP documents: "The most important feature of double-quoted strings is the fact that variable names will be expanded. See string parsing for details. " |
|||
|
|
|
Let's look what a reference do. Inside jquery.js, every string are double-quoted. So, beginning now, I'll use double-quoted strings. (I was using single!) |
|||||
|
|
There are people that claim to see performance differences: old mailing list thread. But I couldn't find any of them to be confirmed. The main thing is to look at what kind of quotes (double or single) you are using inside your string. It helps to keep the number of escapes low. For instance when you are working with html inside your strings, it is easier to use single quotes so that you don't have to escape all double quotes around the attributes. |
|||||
|
|
There is strictly no difference, so it is mostly a matter of taste and of what is in the string (or if the JS code itself is in a string), to keep number of escapes low. The speed difference legend might come from PHP world, where the two quotes have different behavior. |
|||
|
|
there is no difference between single and double quotes in javascript. specification is important: maybe there are performance diffs, but they are absolutely minimum and can change everyday according to browsers' implementation. further discussion is futile unless your js application is hundreds of thousands long. it's like benchmark if a=b; is faster than a = b; (extra spaces) today, in a particular browser and platform, etc. |
|||
|
|
i've been running the following about 20 times. and it appears that Double quotes are about 20% faster. Fun part is, if you change part 2 and part 1 around, Single quotes are about 20% faster.
|
|||||||||
|
|
After reading all the answers that say it maybe be faster or maybe have advantages, I would say double quote is better or maybe faster too because Google closure compiler convert single quotes to double quotes. |
|||||
|
|
|
For me, if I code in a VIM editor and if something is enclosed in single quotes, I can double-click to select ONLY the text within the quotes. Double quotes, on the other hand, includes the quote marks which I find annoying when I want to do some quick copy and pasting. E.g. 'myVar' double-click in VIM editor copies: >myVar< "myVar" literally copies: >"myVar"< and when I paste, I have to delete the quote marks either side. My two cents anyway... |
|||
|
|
|
The difference is purely stylistic. I used to be a double-quote Nazi. Now I use single quotes in nearly all cases. There's no practical difference beyond how your editor highlights the syntax. |
|||||||||||||||
|
|
I think it's important not to forget that while IE might have 0 extensions/toolbars installed, firefox might have some extensions installed (I'm just thinking of firebug for instance). Those extensions will have an influence on the benchmark result. Not that it really matters since browser X is faster in getting elementstyles, while browser Y might be faster in rendering a canvas element. (hence why a browser "manufacturer" always has the fastest javascript engine) |
|||
|
|
|
As stated by other replies, they are almost the same. But I will try to add more.
|
|||
|
|
|
For use of javascript code across different languages, I've found single quotes to consistently require less code tweaking. Double quotes support multi-line strings. |
|||
|
|
alert("It's \"game\" time.");oralert('It\'s "game" time.');? – Francisc Oct 11 '11 at 18:37