"Strings should always use double quotes. Some people are very fond of their C style strings (single quotes), but this leads to conflicting styles within a script."
Maybe I've read this statement incorrectly, but:
C strings are double quoted not single quoted.
C characters are single quoted.
This is also the case with C++ (naturally), Java and C#. In fact Javascript is the only vaguely C'ish language which comes to mind that doesn't follow this convention.
"Strings should always use double quotes. Some people are very fond of their C style strings (single quotes), but this leads to conflicting styles within a script."
Maybe I've read this statement incorrectly, but:
C strings are double quoted not single quoted.
C characters are single quoted.
This is also the case with C++ (naturally), Java and C#. In fact Javascript is the only vaguely C'ish language which comes to mind that doesn't follow this convention.