3. Objects Flashcards

1
Q

Was ist eine property eines Objekts?

A

Eine Eigenschaft, z.B. Farbe: grün

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

Was ist eine Method eines Objekts?

A

Eine Eigenschaft die eine Funktion enthält welche die Eigenschaft ändert, z.B. Reißverschluss offen oder zu

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

Was macht eine const variable?

A

Man kann die Werte von properties eines Objektes ändern, aber sie nicht ersetzen oder gar entfernen

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

Wann sollte ich bracket notation verwenden? (obj[“property”])

A

Wenn Sonderzeichen im Namen sind oder andere Dinge die gegen die Konvention stehen und den Code breaken würden

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

Was ist eine Method?

A

Eine Funktion innerhalb eines Objekts

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

Was ist ein Parameter?

A

Eine Information welche man der Funktion gibt (in den Klammern)

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

Was macht ein constructor?

A

Er definiert die Parameter der properties in () und gibt den properties in {} die werte der parameter

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

Was ist eine Klasse?

A

Eine Art von template bzw. blueprint nach der man sich richten kann

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

Wann kann man eine Klasse aufrufen?

A

Nachdem man sie deklariert

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

Wie erstelle ich eine Klassse?

A

class name { constructor (parameter){this.parameter = property}}; export default name, danach import name from “destination” const variable = new name(values)

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