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!
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

Gabriel Song
3,839 PointsWhat Andrew said confused me. Why is an anonymous function not desirable for the clock application exactly?
Also, why does Andrew call tickClock() in the original code, and what does he mean by "can't wait for the first setInterval call"?:
setInterval(tickClock, 1000);
That is confusing as well.
2 Answers

Steven Parker
225,726 PointsThe callback passed to "setInterval" will not run until the first interval has elapsed. So if you "can't wait" (meaning you want an immediate update), you call the function ("tickClock" in this case) directly one time.

Gabriel Song
3,839 PointsOh ok, is that because of the 1000ms that the first tickClock() would have to wait? I get it now!