Module7 Flashcards

1
Q

Wat is het verschil tussen een object en een array?

A

Een array heeft indexen met een value, een object heeft key-value pairs. Array is een soort object.

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

Hoe geef je het woord baseball weer uit het volgende object?
const person = {
name: “micheal”,
lastname: “nickelson”,
age: 43,
hobby:[“swimming”, “baseball”]
}

A

console.log(person.hobby[1])

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

Wat print onderstaande string methode?
let a = text.substring(10)

A

de string vanaf index 10

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

Wat print onderstaande string methode?
let a = text.substring(4, 10)

A

de string tussen index 4 tot 10

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