Possible Duplicate:
When to Use Double or Single Quotes in JavaScript
single quotes versus double quotes in js
I'm trying to build a Node.js Express web application, and in the tutorial they use '
instead of "
quite often, but there is no explanation why.
Can someone please explain the difference? Is this specific to JavaScript, or does it apply to other languages too?
Example:
app.configure('dev')
app.get("/", function (req, res)
Thanks :)