console.log("double"); vs. console.log(\'single\');
console.log("double");
console.log(\'single\');
I see more and more JavaScript libraries out there using single quotes when ha
Let's look what a reference does.
Inside jquery.js, every string is double-quoted.
So, beginning now, I'll use double-quoted strings. (I was using single!)