0
New Set Вопрос
let set = new Set([1, 2, 4, 2, 59, 9, 4, 9, 1]); console.log(set.size); // 5 Почему Консоль выводит 5? Насколько я понял new Set определяет количество не повторяющихся элементов почему 5?
4 Answers
0
1, 2, 4, 59, 9 -> 5 unique numbers
0
why unique? they repeats,only 59 don’t repeat
0
Evgeny
Can you also print the set? I would guess that only 1, 2, 4, 59, 9 are in the set.
A set contains only unique values.
0
Mm I’m understand ,thanks