How Online stopwatch works
Online Stopwatch measures elapsed time with millisecond precision and lets you record individual lap times during a session. Each lap captures the split time since the last lap as well as the total elapsed time, giving you both the individual segment duration and the cumulative running total. The stopwatch runs purely in the browser using the Performance API for timing; nothing is transmitted to any server and the tool works fully offline.
The Performance API provides higher-resolution timestamps than the standard Date API, allowing the display to update accurately to the millisecond. Lap data and the running state are written to your browser local storage as you go, so an accidental refresh or a closed tab does not lose the recording. Nothing leaves the device and no cookie is set; the reset control clears the laps.