Импортируй константы из файла constants.js и выведи их на экран с помощью console.log
Каждый console.log должен выводить отдельную константу на экран
Эта задача — часть курса по Full-Stack JavaScript
Ты можешь задать свой вопрос в комментариях под постом
Если ты уже решил задачу, то не стесняйся помочь другим
constants.js
const heyThere = 'Hey there!';
const seeYou = 'See you!';
solution.js
/**
* Import constants from the constants.js file and log them to the console using console.log
*
* Each console.log should log a separate constant to the screen
* */
import { heyThere, seeYou } from './constants.js';
console.log(heyThere);
console.log(seeYou);