When should I use double or single quotes in JavaScript?

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.

4
44

Leave a Comment