const dailyRoutine = (): void => {
code();
learn();
repeat();
};
// Execute daily
setInterval(dailyRoutine, 24 * 60 * 60 * 1000);
luhamoza
const dailyRoutine = (): void => {
code();
learn();
repeat();
};
// Execute daily
setInterval(dailyRoutine, 24 * 60 * 60 * 1000);