84
rated 0 times
[
86]
[
2]
/ answers: 1 / hits: 59649
/ 15 Years ago, wed, june 3, 2009, 12:00:00
I saw this question and I am wondering about the same thing in JavaScript.
If you use the character ' or the character when making strings in JavaScript, the application seems to behave the same. So what is the difference between these two characters?
The only advantage I have seen in using ' to build strings is that I can do stuff like:
var toAppend = '<div id=myDiv1></div>';
Instead of:
var toAppend = <div id=myDiv1></div>;
Is there any significant difference between them that I should be aware of?
More From » string