This page was translated from English by the community.Learn more and join the MDN Web Docs community.
Set.prototype.values()
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since 2015년 7월.
Set 인스턴스의values() 메서드는 요소가 삽입된 순서대로 각 요소의 값을 순회할 수 있는 새로운set 반복자 객체를 반환합니다.
In this article
시도해 보기
const set1 = new Set();set1.add(42);set1.add("forty two");const iterator1 = set1.values();console.log(iterator1.next().value);// Expected output: 42console.log(iterator1.next().value);// Expected output: "forty two"구문
js
values()매개변수
없음.
반환 값
새로운순회 가능한 반복자 객체.
예시
>values() 사용하기
js
const mySet = new Set();mySet.add("foo");mySet.add("bar");mySet.add("baz");const setIter = mySet.values();console.log(setIter.next().value); // "foo"console.log(setIter.next().value); // "bar"console.log(setIter.next().value); // "baz"명세서
| Specification |
|---|
| ECMAScript® 2026 Language Specification> # sec-set.prototype.values> |