Objects (dictionaries) Flashcards

1
Q

Create an object

A

let obj = { key1: “value1”, key2: “value2” }

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

Access value by key

A

obj.key1
obj[“key1”]

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

Add or update key value pair

A

obj.key3 = “value3”

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

Delete key value pair

A

delete obj.key1

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

Check if key exists in object

A

‘key1’ in obj

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

Get array of keys

A

Object.keys(obj)

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

Get array of values from object

A

Object.values(obj)

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

Loop through object

A

for (let key in obj) {
console.log(key)
}

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