Concise explanation of stopwatch implementation using React, it involves the usage of useEffect hook for creating a stopwatch and tracking milliseconds.
Pallavi Gupta
Last Updated Feb 21, 2026

Stopwatch implementation is one of the most commonly asked Frontend Machine Coding Question, and this machine coding question helps to evaluate the understanding of useEffect hook as part of react application. In this post, we will going to understand the implementation of a stopwatch using React that tracks elapsed time in hours, minutes, and seconds.
It uses the useState hook to manage 2 component states to track time and status. [ millisecond, setMillisecond] state is used to track the time in milliseconds and [isActive, setIsActive] is used to track the active status of the watch.
The useEffect hook handles the timer functionality, starting an interval that increments the time every second when isActive is true and clearing the interval when paused.
A formatting function formatTime converts the elapsed time into a readable HH:MM:SS format. The component displays the time in a styled black-and-white layout and provides three buttons—Start, Pause, and Reset—to control the stopwatch.
Overall, this component demonstrates efficient state management, side effects handling with useEffect, and UI updates in real time, making it a great frontend machine coding question of how to build an interactive timer in React. 🚀
import { useEffect, useState } from "react";
import "./styles.css";
function StopWatch() {
const [millisecond, setMillisecond] = useState(0);
const [isActive, setIsActive] = useState(false);
useEffect(() => {
let interval = null;
if (isActive) {
interval = setInterval(() => {
setMillisecond((prevTime) => prevTime + 1);
}, 1000);
}
return () => clearInterval(interval);
}, [isActive]);
const formatTime = (seconds) => {
const hours = Math.floor(seconds / 3600);
const minutes = Math.floor(seconds / 60) % 60;
const sec = Math.floor(seconds % 60);
return {
hours: String(hours).padStart(2, "0"),
minutes: String(minutes).padStart(2, "0"),
sec: String(sec).padStart(2, "0"),
};
};
const { hours, minutes, sec } = formatTime(millisecond);
const handleStart = () => {
setIsActive(true);
};
const handlePause = () => {
setIsActive(false);
};
const handleReset = () => {
setIsActive(false);
setMillisecond(0);
};
return (
<div className="container">
<div>
<h1>Stop Watch</h1>
<div className="d-flex timeGroup">
<div className="time">{hours}</div>
<div className="time">{minutes}</div>
<div className="time">{sec}</div>
</div>
<div className="d-flex buttonGroup">
<div className="div">
<button onClick={handleStart}>Start</button>
</div>
<div className="div">
<button onClick={handlePause}>Pause</button>
</div>
<div className="div">
<button onClick={handleReset}>Reset</button>
</div>
</div>
</div>
</div>
);
}
export default StopWatch;
// styles.css
.container {
display: flex;
justify-content: center;
}
.time {
width: 33%;
padding: 0.5rem;
color: white;
background-color: skyblue;
border: 1px solid #eee;
}
.buttonGroup {
display: flex;
justify-content: space-between;
width: 200px;
margin-top: 1rem;
}
.timeGroup {
display: flex;
width: 200px;
}Be the first to share your thoughts!
No comments yet.
Start the conversation!
Build Your Portfolio
Help the Community
Strengthen Your Skills
Share your knowledge by writing a blog or quick notes. Your contribution can help thousands of frontend developers ace their interviews and grow their careers! 🚀
Kirtesh Bansal
Last Updated Feb 21, 2026
A beginner-friendly guide to understanding call, apply, and bind methods in JavaScript, along with step-by-step call, apply and bind polyfill implementations that are often asked in interviews.
Anuj Sharma
Last Updated Aug 3, 2025
Explore the implementation of setTimeout in JavaScript with a detailed explanation for every step. Understand all scenarios expected to implement the setTimeout polyfill.
Anuj Sharma
Last Updated Feb 6, 2026
A comprehensive cheat sheet for the Frontend Machine Coding Round Interview, which helps to revise all the important machine coding & UI design concepts before your next Machine Coding interview.
Anuj Sharma
Last Updated Nov 15, 2025
Understand the code implementation of useSessionStorage custom hook in react that will help to efficiently manager session storage in application.
Anuj Sharma
Last Updated Feb 21, 2026
Find the top React Performance Optimization Techniques specific to React applications that help to make your react app faster and more responsive for the users along with some bonus techniques.
Anuj Sharma
Last Updated Feb 21, 2026
Explore code explanation of useToggle() custom hook in react to handle the toggle event efficiently.
Subscribe to FrontendGeek Hub for frontend interview preparation, interview experiences, curated resources and roadmaps.
All in One Preparation Hub to Ace Frontend Interviews. Master JavaScript, React, System Design, and more with curated resources.
© 2026 FrontendGeek. All rights reserved