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