I have been writing some JavaScript code that relies upon universal time. I have been doing this online with two computers. One of which is 24 minutes behind the other.
Example:
Computer 1: 25/07/2020, 21:57 Computer 2: 25/07/2020, 22:21
When both computers enter a UTC number they are still the equivalent of 24 minutes apart.
Computer 1: 1595710054892 Computer 2: 1595711497605
This difference in time is causing problems with my programme as it relies upon timed notifications.
Is there anyway to correct for this or will I just have to hope that computers that use my JavaScript code will all have the same time within their respective timezone?