js timers Flashcards
1
Q
What is a “callback” function?
A
Function that is passed into another function as an argument and is invoked outside of that function
2
Q
Besides adding an event listener callback function to an element or the document, what is one way to delay the execution of a JavaScript function until some point in the future?
A
using timers like setTimeout();
3
Q
How can you set up a function to be called repeatedly without using a loop?
A
using interval()
4
Q
What is the default time delay if you omit the delay parameter from setTimeout() or setInterval()?
A
0 milliseconds (immediate)
5
Q
What do setTimeout() and setInterval() return?
A
positive integer value that identifies the created timer