From 86792571ae1a21a1e4bf526747d6dd1c2636d167 Mon Sep 17 00:00:00 2001 From: alattalatta Date: Sat, 14 Aug 2021 15:57:42 +0900 Subject: Clean up JS reference documents (#1818) * Clean up JavaScript references HTML code - Remove inline styles - Remove elements - Remove title attribute * Remove sup/sub from JavaScript reference * Remove name attrs from JavaScript reference * Remove legacy browser compat elements * Remove duplicate browser-compat key --- .../reference/global_objects/array/of/index.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'files/ko/web/javascript/reference/global_objects/array/of') diff --git a/files/ko/web/javascript/reference/global_objects/array/of/index.html b/files/ko/web/javascript/reference/global_objects/array/of/index.html index 9504e986ab..6aeba4a566 100644 --- a/files/ko/web/javascript/reference/global_objects/array/of/index.html +++ b/files/ko/web/javascript/reference/global_objects/array/of/index.html @@ -22,11 +22,11 @@ Array(7); // [ , , , , , , ] Array(1, 2, 3); // [1, 2, 3] -

구문

+

구문

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

매개변수

+

매개변수

elementN
@@ -37,18 +37,18 @@ Array(1, 2, 3); // [1, 2, 3]

새로운 {{jsxref("Array")}} 객체.

-

설명

+

설명

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

-

예제

+

예제

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

폴리필

+

폴리필

아래 코드를 다른 코드 이전에 포함하면 Array.of를 지원하지 않는 환경에서도 사용할 수 있습니다.

@@ -59,7 +59,7 @@ Array.of(undefined); // [undefined] } -

명세

+

명세

@@ -93,7 +93,7 @@ Array.of(undefined); // [undefined]

{{Compat("javascript.builtins.Array.of")}}

-

같이 보기

+

같이 보기

  • {{jsxref("Array")}}
  • -- cgit v1.2.3-54-g00ecf