Basic JavaScript: Escape Sequences in Strings

var myStr="FirstLine\n\\SecondLine\\\rThirdLine"; // Change this line

I scored 4/6, still couldn’t score please

Can you be more explicit? :thinking: What specifically do you need?

What do the failing tests say? I seem to remember that their should be a tab in there.

var myStr = "<a href=\"http://www.example.com\" target=\"_blank\">Link</a>";ype or paste code here

this is my code above and below is what the tests says.

Change the provided string to a string with single quotes at the beginning and end and no escape characters.

Right now, the tag in the string uses double quotes everywhere. You will need to change the outer quotes to single quotes so you can remove the escape characters.

Your code currently has double quotes wrapping it and includes several escape characters.

i passed the test now