← All tools
// Time

Stopwatch online

Accurate stopwatch with lap recording - millisecond precision

Stopwatch logo
by
CHUNKY
MUNSTER
00:00.000

Using the Online Digital Timer

  1. Click Start to begin counting.
  2. Click Lap to record a split - both lap and cumulative times are stored.
  3. Click Pause to freeze the count; Start again to resume.
  4. Click Reset (with confirmation) to clear the laps and zero the timer.

Stopwatch provides a high-precision browser-based timing solution for sports, workouts, and coding benchmarks. This millisecond stopwatch tracks elapsed time using performance.now(), ensuring sub-frame accuracy even when the tab is in the background.

How the Millisecond Stopwatch and Lap Timer Works

Lap recording captures both the split (time from the previous lap) and the cumulative split (time from the start), providing a reliable race timer for multi-step tasks. Reset requires confirmation when laps exist, preventing accidental data loss during a workout interval session.

Frequently Asked Questions

How accurate is the stopwatch?

It uses performance.now(), which provides sub-millisecond resolution capped to 1ms in most browsers for security reasons. Real-world accuracy is bounded by browser scheduling and your own reaction time - typically ±50ms for human-triggered start/stop.

Does it keep counting if I switch tabs?

Yes. Time is tracked by recording the start timestamp and computing now − start on every render. The display update is throttled when the tab is in the background (browsers do this for power), but the underlying count is always correct.

Can I export my laps?

Yes - the lap list can be copied to the clipboard. Each lap shows both its split time (lap duration) and its cumulative time from the start, so the data is meaningful in either form.

Is the timing affected by Spectre mitigations?

Slightly - most browsers reduce performance.now() resolution to 1ms (down from microseconds) to prevent timing-based side-channel attacks. For a stopwatch this is plenty; for benchmarking sub-millisecond code, use the High-Resolution Time Level 3 API in a secure context.

Explore the full suite of Time tools and 290+ other free utilities at Chunky Munster with our Stopwatch.