Thanks to visit codestin.com
Credit goes to developer.mozilla.org

This page was translated from English by the community. Learn more and join the MDN Web Docs community.

View in English Always switch to English

arguments[@@iterator]()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since 2016년 7월.

@@iterator 속성의 초기값은 Array.prototype.values 속성의 초기값과 같은 함수 객체입니다.

구문

arguments[Symbol.iterator]()

예제

for...of 반복문을 사용한 반복

js
function f() {
  // 브라우저가 for...of 반복문과
  // for 반복문 안의 let 범위의 변수를 지원해야 합니다.
  for (let letter of arguments) {
    console.log(letter);
  }
}
f("w", "y", "k", "o", "p");

명세

Specification
ECMAScript® 2027 Language Specification
# sec-createunmappedargumentsobject
ECMAScript® 2027 Language Specification
# sec-createmappedargumentsobject

브라우저 호환성

같이 보기