Plz slove my issue

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

Your code so far


const myStr = "I am a \" double quoted \" string quotes \" 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/97.0.4692.99 Safari/537.36

Challenge: Escaping Literal Quotes in Strings

Link to the challenge:

Hi @mehedihasanrahid66 !

Welcome to the forum!

You have have some spacing issues and an incorrect word.
Add this console.log at the bottom of your code so you can see the issues for yourself and fix them.

const myStr = "I am a \" double quoted \" string quotes \" double quotes \" . "; // Change this line
console.log(`Correct: I am a "double quoted" string inside "double quotes".`) 

You should see this result in the console to see the errors better
Screen Shot 2022-01-26 at 10.08.16 PM

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.