Date and Time Configuration Error | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
0

Date and Time Configuration Error

How will I add setInterval in date and time? And I want to check if hours is +24 https://code.sololearn.com/W1WBVWLq4t05/?ref=app

12th Sep 2022, 8:20 AM
DAVE CONCO
DAVE CONCO - avatar
2 Respuestas
+ 3
function load() { var date = new Date(); var day = date.getSeconds(); if (day == 20) { alert("Congratulations, You've Received 10 Coins Of Your Daily Bonuses"); }else if (day > 10) { console.log("hello"+day); } if( day > 25 ) clearInterval(timer); // clearing interval } var timer = setInterval(load, 1000); // setting interval /* your condition day == day+1 never true your logic is not understood hours never be +24. It will be only between 0 to 23 I just adjusted your code to output something.. your else if has none outputs. so your output is empty and you are not calling function to use it. I used getSeconds method .. run this code again after a few seconds if you don't output or wait a few seconds to see output. */
12th Sep 2022, 9:00 AM
Jayakrishna 🇮🇳
+ 2
Ok thanks
14th Sep 2022, 2:16 PM
DAVE CONCO
DAVE CONCO - avatar