Escaping Literal Quotes unknown "bug"?

it asks me to print exactly that
"I am a “double quoted” string inside "double quotes"
my code:
var myStr= "I am a \"double quoted\" string inside \"double quotes\" "; // Change this line
results

You should use two double quotes (") and four escaped double quotes ("). passed
Variable myStr should contain the string: I am a “double quoted” string inside “double quotes”. failed

Check your string carefully. You have one character off at the end.

2 Likes