Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Array.of()

This is an experimental technology, part of the ECMAScript 6 (Harmony) proposal.
Because this technology's specification has not stabilized, check the compatibility table for usage in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future version of browsers as the spec changes.

요약

Array.of() 메소드는 인자의 수나 유형에 관계없이 가변 인자를 갖는 새 Array 인스턴스를 만듭니다.

구문

Array.of(element0[, element1[, ...[, elementN]]])

매개 변수

elementN
배열을 생성하는 요소

설명

이 함수는 ECMAScript 6 표준 일부입니다. 자세한 정보는 Array.of, Array.from 제안 사항Array.of 폴리필에서 확인하실 수 있습니다.

예제

Array.of(1);         // [1]
Array.of(1, 2, 3);   // [1, 2, 3]
Array.of(undefined); // [undefined]

폴리필(Polyfill)

기본적으로 해당 메소드를 사용할 수 없으면, 다른 코드로부터 Array.of()가 생성되기 전에 다음과 같은 코드를 실행해주세요.

if (!Array.of) {
  Array.of = function() {
    return Array.prototype.slice.call(arguments);
  };
}

명세

Specification Status Comment
ECMAScript 6 (ECMA-262)
The definition of 'Array.of' in that specification.
Release Candidate Initial definition.

브라우저 호환성

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support 39 [1] 25 (25) Not supported Not supported Not supported
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support Not supported 39 [1] 25.0 (25) Not supported Not supported Not supported

[1] 이 기능은 기본 설정에서 선택할 수 있습니다. chrome://flags 으로 가서 “Enable Experimental JavaScript” 항목을 활성화해주세요.

같이 보기

문서 태그 및 공헌자

 이 페이지의 공헌자: ligeek
 최종 변경: ligeek,