While using gjslint, I got a hint: \"Single-quoted string preferred over double-quoted string\".
So why? I\'m a little confused with this. Why single-quoted preferred?>
In terms of performance, according with http://jsperf.com you get almost the same performance for both in some browsers, in others you get the same performance.
There's a lot of tests in jsperf and all of them get almost the same result:
In conclusion I think using single or double quotes is just a matter of taste and not a matter of performance.
Regards.