Реализуй функцию slowLog
, которая принимает стоку и выводит ее на экран с задержкой 3 секунды.
Эта задача — часть курса по Full-Stack JavaScript
Ты можешь задать свой вопрос в комментариях под постом
Если ты уже решил задачу, то не стесняйся помочь другим
helper.js
export const slowLog = (s) => {
console.log(s);
}
solution.js
/**
* Implement a function slowLog in helper.js that takes a string and prints it to the console after a 3 sec delay
*
* Use console.log and setTimeout
* */
import { slowLog } from './helper.js';
const lateString = 'This message should be delayed and printed after a 3 second delay';
slowLog(lateString);