Calling a function on UTC time

80 Views Asked by At

What I want to do is "to call a function every 4 hours based on UTC time not client side time.

function callFunction(){
    var date= new Date();
    date.setUTCHours(4);
}

if (time){   
    callFunction();
}

/* ----*/

else{
    //I do some stuff!
}
0

There are 0 best solutions below