What is a “callback” function?
a function that is called as part of another fucntion or method
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?
setTimeout()
How can you set up a function to be called repeatedly without using a loop?
setInterval() function
What is the default time delay if you omit the delay parameter from setTimeout() or setInterval()?
0 milliseconds.
What do setTimeout() and setInterval() return?
returns a positive integer value, called a timer ID