Angular Flashcards

1
Q

Modules

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

Components

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

directive

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

data-binding

A

string interpolation, property binding, event binding, two-way binding

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

directive (component)

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

directive (attribute)

A

ngStyle, ngClass

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

directive (structural)

A

ngIf, ngFor

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

debug code in the browser

A

chrome debug > sources (tab) > page (sub-tab) > webpack:// > locate the file and code line in question and add a breakpoint. This should be the same directory structure as your code editor.

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

@Input

A

A decorator used to inform Angular that a property in that component can get its value from its parent component

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

@Output

A

A decorator that marks a property in a child component that allows data to travel from the child to the parent component.

The child component uses the @Output() property to raise an event to notify the parent of the change. To raise an event, an @Output() MUST have the type of EventEmitter, which is a class in @angular/core that you use to emit custom events.

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