Front End Development Libraries Projects - Build a 25 5 Clock

Tell us what’s happening:
I have encountered an issue trying to complete all the tests, in particular #Timer test 11, where I am supposed to unpause the timer, from the point it was stopped. The error is unclear, and this test previously had been marked right along with all other tests on an earlier run-through. After trying to revert my code to when it had succeeded to little success, I am at a loss on how to pass this.

Your code so far
bottommost link

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36

Challenge: Front End Development Libraries Projects - Build a 25 + 5 Clock

Link to the challenge:

Hello everyone, at this point the problem I had been encountering has been resolved. In case anyone finds this post in the future with a similar problem:

The issue was that I used setInterval() to create a timer, but this Interval was left as is once the pause or reset button was clicked, even if it no longer impacted the timer it still clicked away. It was a simple issue of not using clearInterval(), though I must have inadvertently done something that prevented extra Intervals from being made hence why it seemed to work at the start.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.