Https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/escaping-literal-quotes-in-strings/

https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/escaping-literal-quotes-in-strings/

Help out guyz in this case,WTF is happening i don’t know

What happened? What did you try? What was the result?

var myStr = “I am a “double quoted” string inside “double quotes”.”; // Change this line

The instructions are simple, you have to insert the given string i myVar variable, but escape the double quotes inside this string.
I tried it and it worked :slight_smile:

You need to use the \ to escape the " (not the outside ones, though)

where i am doing wrong?

done brother thanks for response!!