Escaping Literal Quotes in Strings test not running!

Tell us what’s happening:
the test fails to run!

Your code so far
var myStr = “I am a /“double quoted/” string inside /“double quotes/”.”;


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


Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1.1 Safari/605.1.15.

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

Your slash is slanted the wrong way. :smile: You need to be using back slashes instead. You are using forward slashes.

1 Like

you’re using /

you should be using \

1 Like

TNX :man_facepalming: