Need to run a timer from custom datetime(past or future). Ex: Jun 15 2021 15:45:31 GMT+0530", "Tue Jun 15 2021 15:45:32 GMT+0530"
(seconds)
startTimer() {
const dateTime = new Date('2021-06-15T15:45:30');
setInterval(() => {
this.now = dateTime;
this.startTimer();
}, 1000);
}
// timer is not working and it is in static. (Tue Jun 15 2021 15:45:31 GMT+0530
)
component :
{{ now }}