컬렉션을 배열로 변환

const set = new Set([1, 2, 1, 4, 5, 6, 7, 1, 2, 4]);
console.log(set); // Set(6) {1, 2, 4, 5, 6, 7}

set.map((num) => num * num); // TypeError: set.map is not a function
그것은 작용하지 않는다. 왜냐하면 setsiterables 이기 때문이다.
배열로 변환하려면
const arr = [...set];
읽어주셔서 감사합니다.💙
@codedrops를 따라갑니다.일간지 기술.
● ● Facebook
미학습● 네트워크 개발● Javascript● 장쑤 성● Javascript
codedrops.tech

좋은 웹페이지 즐겨찾기