Skip to content
Find file
Fetching contributors…
Cannot retrieve contributors at this time
9 lines (5 sloc) 484 Bytes

Escaping Literal Quotes in Strings

In JavaScript, you can escape a quote from considering it as an end of string quote by placing a backslash \ in front of the quote.

"Alan said, \"Peter is learning JavaScript\"."

This signals JavaScript that the following quote is not the end of the string, but should instead appear inside the string.

However another option is to alternate quotation marks if possible. 'Alan said, "Peter is learning JavaScript"' this would also work.

Something went wrong with that request. Please try again.