What is a “callback” function?
A function that is passed as an argument of another function and is called by the outer function.
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?
Using setTimeout( ) function.
How can you set up a function to be called repeatedly without using a loop?
Using setInterval( ) function.
What is the default time delay if you omit the delay parameter from setTimeout( ) or setInterval( )?
The value used is 0.
What do setTimeout( ) and setInterval( ) return?
They return a timeoutID or intervalID, which are positive integer values.