Help me I can't figure out what's wrong in my code

Tell us what’s happening:
Describe your issue in detail here.

Your code so far


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

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36

Challenge: Escaping Literal Quotes in Strings

Link to the challenge:

To escape characters you need to use the other slash, \

After you fix that, be careful with the spacing.

Well,I did’nt get it can you plz share the solution or explain just a lil bit more

Have you tried with using the other slash? You are using the wrong one

You are using a forward slash ( /) while the escape character is a backward one (\ ).

but it does not work either

Please don’t hijack the threads of other forum members. If you have a question about a specific challenge as it relates to your written code for that challenge, just click the Ask for Help button located on the challenge. It will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.