Escaping Literal Quotes in Strings

HELLO everyone ! Can somebody help point out what is wrong in this code? it keep showing this.:


var myStr= "I am a \"double qouted\"string inside \"double qoutes\" ."; // Change this line


Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Windows NT 6.2; WOW64; rv:54.0) Gecko/20100101 Firefox/54.0.

Link to the challenge:

You misspelled “quoted” twice

1 Like

You should add a space before “string”, remove the space before the “.”

1 Like