Tell us what’s happening:
I have written the code which is asked in the question, it should be right as I have contained the string inside double quotes, but the output shows the end double quote though it should not,
my code is myStr = “I am a "double quoted" String inside"double quotes".”
it should have output of I am a “double quoted” String inside “double quotes”.
But it shows I am a “double quoted” String inside “double quotes”."
is that a bug?
If it is, kindly solve it, or I can not proceed to the next step in the JavaScript course.
Your code so far
const myStr = "I am a \"double quoted\" String inside\"double quotes\"."
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36
Challenge: Basic JavaScript - Escaping Literal Quotes in Strings
Link to the challenge: