| Код | Вывод |
|---|---|
\' | одиночная цитата |
\" | двойная цитата |
\\ | обратный слэш |
\n | новая линия |
\r | возврат каретки |
\t | табуляция |
\b | возврат на одну позицию |
\f | форма подачи |
myStr используя escape-последовательности. Первая линияДля правильной вставки специальных символов вам необходимо использовать escape-последовательности. Вам также нужно будет следить за интервалом, как он выглядит выше, без пробелов между escape-последовательностями или словами. Вот текст с выведенными escape-последовательностями.
\Вторая линия
ThirdLine
FirstLineлинииnewlinetabbackslashвторой
newline ThirdLine
myStr should not contain any spaces
testString: assert(!/ /.test(myStr));
- text: myStr should contain the strings FirstLine, SecondLine and ThirdLine (remember case sensitivity)
testString: assert(/FirstLine/.test(myStr) && /SecondLine/.test(myStr) && /ThirdLine/.test(myStr));
- text: FirstLine should be followed by the newline character \n
testString: assert(/FirstLine\n/.test(myStr));
- text: myStr should contain a tab character \t which follows a newline character
testString: assert(/\n\t/.test(myStr));
- text: SecondLine should be preceded by the backslash character \
testString: assert(/\\SecondLine/.test(myStr));
- text: There should be a newline character between SecondLine and ThirdLine
testString: assert(/SecondLine\nThirdLine/.test(myStr));
- text: myStr should only contain characters shown in the instructions
testString: assert(myStr === 'FirstLine\n\t\\SecondLine\nThirdLine');
```