Week 3 Flashcards

1
Q

Event Handlers

A

Functions that will run when an event happens

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

Event Propagation

A

Roughly, the order in which different DOM elements are notified of an event

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

Event Capturing

A

Part of the event propagation model wherein listeners are fired from the top of the DOM tree down

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

Event Targeting

A

Part of the event propagation model wherein listeners are fired on the source of the event

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

Event Bubbling

A

Part of the event propagation model wherein listeners are fired from the target of the event up

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

Event Delegation

A

The process of using event propagation to handle events at a higher level in the DOM than the element on which the event originated

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

Array Prototype

A

methods that are built specifically for arrays, they help us change the arrays themselves or get certain information out of them.

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

Mutator

A

methods that mutate, or change, the original array.

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

Accessor

A

Methods that do not mutate the original array, rather just give us some information about the array

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