dom-events Flashcards

1
Q

Why do we log things to the console?

A
  1. verify what the code is doing

2. debugging

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

What is the purpose of events and event handling?

A

An event indicates that an action is taking place. The event handler deals with the event.

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

Are all possible parameters required to use a JavaScript method or function?

A

-no

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

What method of element objects lets you set up a function to be called when a specific type of event occurs?

A

-addEventListener()

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

What is a callback function?

A

A callback function is a function passed into another function as an argument, which is then invoked inside the outer function to complete some kind of routine or action.

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

What object is passed into an event listener callback when the event fires?

A

-event

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

What is the event.target? If you weren’t sure, how would you check? Where could you get more information about it?

A
  • It is a property of an event which is a reference to the element upon which the event was fired.
  • In the listener parameter, console.log(event.target)
  • When the event is fired, check the console to get the details of MDN.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the difference between these two snippets of code?

A

The first will call the function when the event happens. The second will call the function when the page loads.

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