I've done this little test with typescript
and nodejs
:
setInterval(() => {
console.log(new Date());
}, 3000);
and while the script
is running, I change the date in the system (Windows 10), and the script
takes approximately 1 min to reflect the day change.
Can someone who has had this experience tell me if this behavior is "normal"?
and if this behavior is the same when a day change is made normally.