Sets Flashcards

1
Q

Create set

A

let set = new Set()

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

Add value to set

A

set.add(value)

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

Check if value exists

A

set.has(value)

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

Delete value from set

A

set.delete(value)

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

Remove duplicates from array

A

let uniqueArray = […new Set(array)]

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

Find length of set

A

set.size

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

Clear set

A

set.clear()

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

convert set to array

A

let myArray = Array.from(mySet)

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

Convert set to array

A

let myArray = […mySet]

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

Loop through set

A

for (let value of mySet) {
console.log(value)
}

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