Исправь константы, чтобы на экран были выведены правильные сообщения.

  • stringWithNewline должна быть напечатана на одной строке и вывести на экран \n
  • внутри stringWithQuotes каждое слово должно быть обернуто в одинарные кавычки
  • stringWithEmojis при выводе на экран должна содержать в себе две эмоджи. Крестик в начале и грустное лицо в конце

Эта задача — часть курса по Full-Stack JavaScript
Ты можешь задать свой вопрос в комментариях под постом
Если ты уже решил задачу, то не стесняйся помочь другим

constants.js

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';
export const stringWithEmojis = 'u274C I want to add emojis here, but it doesn\'t work... u { 1F622 }';

solution.js

/**
 * Fix the constants to make sure that correct messages are logged to the screen
 * */

import { stringWithEmojis, stringWithNewline, stringWithQuotes } from './constants.js';

console.log(stringWithNewline);
console.log(stringWithQuotes);
console.log(stringWithEmojis);