How can I include a double quote in a JavaScript string to be shown in the browser?
I am working on my JavaScript homework and I have to include double quotes in the middle of my list as shown below:
if (i == 0) { error += "<li> this is not the name "....." </li>\n" }
Use single quotes.
error += '<li> this is not the name "....." </li>\n';
Or escape the double quotes.
error += "<li> this is not the name \".....\" </li>\n";
Use single quotes as your string delimiters:
if (i == 0) { error += '<li> this is not the name "....." </li>\n' }
If you have single quotes in the string, delimit it with double quotes.
If you have double quotes in the string, delimit it with single quotes.
If you need to use both types in the string, escape whatever delimiter you have chosen by prefixing it with a \
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With