Possible Duplicate:
Double quote in JavaScript string
var array=["famous quote by Shakespear is",""to be or not to be""]
How to escape the blockquote in the second element of the array which uses " for delimiting elements?
How to escape the blockquote in the second element of the array which uses " for delimiting elements? |
|||
|
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
You can escape with a backslash or use single quotes around the string:
Single and double quotes are interchangeable as long as you pair them correctly. |
|||
|
|
|
Use a backslash:
Or just mix the types of quotes:
|
|||
|
|