There is no special difference between single and double quotes (like it is in PHP).
The only actual difference is that you can write a double quote "
in a single-quoted string without escaping it, and vice versa.
So, if you are going to output some HTML in your JavaScript, like this:
<div id = "my_div"></div>
single quotes are more useful :-)