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
After reading all the answers that say it may be be faster or may be have advantages, I would say double quotes are better or may be faster too because the Google Closure compiler converts single quotes to double quotes.