javascript timers Flashcards

1
Q

what is this?

setTimeout(functionRef, delay)

A

It’s how you set a delay for as many milliseconds as you enter, and the function that you enter will execute after that time has passed

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

What is a “callback” function?

A

A function that you use as an argument in another function

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

set timeout function

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

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

A

using the

setInterval( )

method

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

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

A

zero

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

What do setTimeout() and setInterval() return?

A

An interval id which is not zero

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