This lesson needs to be looked over, had to look up troubleshooting. #7664
Og-Morrow
commented
cannelflow
commented
exercise says Encode the following sequence, separated by spaces:
backslash tab tab carriage-return new-line and assign it to myStr and that is what you did there
var myStr;
myStr = "\\ \t \t \r \n";// Change this line
or you can just write like
var myStr = "\\ \t \t \r \n";// Change this line
cannelflow
commented
do like
var myStr = "\\ \t \t \r \n";// Change this line
not like
var myStr = "\ \t \t \r \n"
can you please come at https://gitter.im/FreeCodeCamp/Help
ltegman
closed this
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Challenge Escape Sequences in Strings has an issue.
User Agent is:
Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.87 Safari/537.36
.Please describe how to reproduce this issue, and include links to screenshots if possible.
My code: