“js itater set” Ответ

установить JS

// Use to remove duplicate elements from the array 

const numbers = [2,3,4,4,2,3,3,4,4,5,5,6,6,7,5,32,3,4,5]

//spreading numbers of the object into an array using the new operator
console.log([...new Set(numbers)]) 

// [2, 3, 4, 5, 6, 7, 32]
Happy Hyena

js itater set

const mySet = new Set( [ { a: 1 }, { b: 2 } ] );

// A) Using forEach()
mySet.forEach( item => console.log( item ) );

// B) Using for ... of
for (let item of mySet) {
  console.log(item);
}
// Output:
// { a: 1 }
// { b: 2 }
KostasX

Ответы похожие на “js itater set”

Вопросы похожие на “js itater set”

Больше похожих ответов на “js itater set” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования