javascript-timers Flashcards

1
Q

What is a “callback” function?

A

A function that is passed as an argument of another function and is called by the outer function.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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 setTimeout( ) function.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How can you set up a function to be called repeatedly without using a loop?

A

Using setInterval( ) function.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the default time delay if you omit the delay parameter from setTimeout( ) or setInterval( )?

A

The value used is 0.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What do setTimeout( ) and setInterval( ) return?

A

They return a timeoutID or intervalID, which are positive integer values.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly