JavaScript básico - Escapa comillas literales en cadenas

Cuéntanos qué está pasando:
Im trying to resolve this step, but in my solution it show up a error

Tu código hasta el momento

const myStr = "I am a \"double quoted\" string inside \"double quotes\"";

Información de tu navegador:

El agente de usuario es: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36

Desafío: JavaScript básico - Escapa comillas literales en cadenas

Enlaza al desafío:

1 Like

Hi @c_hernandez

Almost done. You just forgot something, it is a small typo. The resulting text must be exactly the same (letters, spaces and symbols) that this one:

I am a "double quoted" string inside "double quotes".

Just read again slowly your solution.

I hope this helps. Happy coding!