00:00.000

About the Stopwatch

A precise browser-based stopwatch with lap recording, split times, and cumulative totals. It runs entirely in your browser with no installation needed, and keeps ticking accurately even if you switch to another tab.

Lap and split times

Press the Lap button while the stopwatch is running to record a split. Each lap shows both the individual lap time and the cumulative total elapsed time, making it easy to compare intervals side by side.

Copying your results

Use the Copy button to export all recorded laps as plain text — useful for pasting into a spreadsheet, notes app, or training log. The export includes both split and cumulative times for every lap.

Accuracy

The stopwatch uses the browser's performance.now() API, which provides sub-millisecond precision. It is significantly more accurate than Date.now() and is not affected by system clock adjustments.

Common uses

Stopwatch precision and timing accuracy

Web-based stopwatches using JavaScript's Date.now() or performance.now() are accurate to within 1-5 milliseconds under normal conditions. performance.now() provides sub-millisecond precision and is not affected by system clock adjustments. For professional sports timing requiring better than 1ms accuracy, dedicated hardware timers are used.

Frequently Asked Questions

How accurate is this stopwatch?
The stopwatch uses the browser's performance.now() API for millisecond precision. It remains accurate even if you switch tabs, though some browsers throttle background timers.
What is the difference between lap time and split?
Lap time shows how long each individual lap took. Split shows the cumulative time from the start to the end of each lap.
Can I copy my lap times?
Yes — press 'Copy laps' to copy all recorded lap times to your clipboard in a plain-text format that you can paste into a spreadsheet or notes app.
Does it keep running if I switch tabs?
Yes. The stopwatch uses Date.now() timestamps rather than counting ticks, so it continues tracking time accurately even if you switch to another tab or briefly minimise the browser.
Is there a maximum lap count?
No hard limit — you can record as many laps as you need. All laps are displayed in a scrollable list, and the copy function will export all of them.
Ad