Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

marked as duplicate by Felix Kling, Makoto, Chacha102, Dharmendra, bipen Jan 12 at 19:18

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.

2 Answers

up vote 1 down vote accepted

You can escape with a backslash or use single quotes around the string:

var array=["famous quote by Shakespear is","\"to be or not to be\""];
var array=["famous quote by Shakespear is",'"to be or not to be"'];

Single and double quotes are interchangeable as long as you pair them correctly.

share|improve this answer
you are awesome – Gordon Jan 12 at 17:37

Use a backslash:

var str = "famous quote by Shakespear is, \"to be or not to be\"";
var str = 'famous quote by Shakespear is, \'to be or not to be\'';

Or just mix the types of quotes:

var str = "famous quote by Shakespear is, 'to be or not to be'";
var str = 'famous quote by Shakespear is, "to be or not to be"';
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.