Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript Callback Functions in JavaScript Callbacks and the DOM Conclusion

Why is it recommended to use clearInterval() and clearTimeout() together with setTimeout() and setInterval() functions?

Could someone please explain me, what clearTimeout() and clearInterval() do? And why is it necessary recommended to use them?

1 Answer

Steven Parker
Steven Parker
229,644 Points

The clear functions allow you to cancel a timer before the interval elapses and the event is generated.

It's often not necessary to clear "setTimeout", since it only occurs one time. But the events generated by "setInterval" will continue indefinitely unless they are cleared.