⏱️ Stopwatch
Description
Create a simple stopwatch app that lets users start, stop, and reset a timer to track elapsed time.
Features
- Start the timer
- Pause/Stop the timer
- Reset the timer to zero
- Displays time in minutes, seconds, and milliseconds
Concepts Practiced
- Working with JavaScript
setInterval
andclearInterval
- DOM manipulation
- Event handling
- Time calculation and formatting
Bonus Challenge
Add lap functionality to record and display multiple time splits.