Странные дела.
Код.
<cod>
export const stringWithNewline = 'This string should display the \n symbol when printed on the screen.';
export const stringWithQuotes = 'This string should have each its word wrapped in single quotes'.split(' ');
export const stringWithEmojis = '\u{274C} I want to add emojis here, but it doesn\'\t work... \u{1F622}';
import { stringWithEmojis, stringWithNewline, stringWithQuotes } from './constants.js';
console.log(stringWithNewline);
console.log(stringWithQuotes);
console.log(stringWithEmojis);
</cod>
Результат:
This string should display the \n symbol when printed on the screen.
[
'This', 'string',
'should', 'have',
'each', 'its',
'word', 'wrapped',
'in', 'single',
'quotes'
]
❌ I want to add emojis here, but it doesn' work... 😢
А при проверке:
Статус
FAILED
Детали
- Каждое слово внутри stringWithQuotes должно быть заключено в одинарные кавычки
PS Пробывал менять на косые - то же самое 🙁
PS 2 В оригинальном коде в первой строке написана \ \ n, при вставке кода упразднилось.