aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/javascript/reference/global_objects/array/index.html
diff options
context:
space:
mode:
authoralattalatta <urty5656@gmail.com>2021-12-12 19:21:33 +0900
committerGitHub <noreply@github.com>2021-12-12 19:21:33 +0900
commit3100b2f1fb878f16db1aff110ae5b6ccb02b9776 (patch)
tree09fbfa3d9b576dfbeb24aa03798d3b762cb32142 /files/ko/web/javascript/reference/global_objects/array/index.html
parent42b3a2d3eab374a5ea1ff2306c8f73353e6e86ee (diff)
downloadtranslated-content-3100b2f1fb878f16db1aff110ae5b6ccb02b9776.tar.gz
translated-content-3100b2f1fb878f16db1aff110ae5b6ccb02b9776.tar.bz2
translated-content-3100b2f1fb878f16db1aff110ae5b6ccb02b9776.zip
Add Array#at() (#3159)
Diffstat (limited to 'files/ko/web/javascript/reference/global_objects/array/index.html')
-rw-r--r--files/ko/web/javascript/reference/global_objects/array/index.html2
1 files changed, 2 insertions, 0 deletions
diff --git a/files/ko/web/javascript/reference/global_objects/array/index.html b/files/ko/web/javascript/reference/global_objects/array/index.html
index f5323cf3d2..11b705304c 100644
--- a/files/ko/web/javascript/reference/global_objects/array/index.html
+++ b/files/ko/web/javascript/reference/global_objects/array/index.html
@@ -319,6 +319,8 @@ var myArray = myRe.exec('cdbBdbsbz');
<p>접근자 메서드는 배열을 수정하지 않고, 기존 배열의 일부에 기반한 새로운 배열 또는 값을 반환합니다.</p>
<dl>
+ <dt>{{jsxref("Array.prototype.at()")}}</dt>
+ <dd>주어진 인덱스의 요소를 반환합니다. 음수 값을 지정할 경우 인덱스를 배열의 끝부터 셉니다.</dd>
<dt>{{jsxref("Array.prototype.concat()")}}</dt>
<dd>배열을 매개변수로 주어진 배열/값과 이어붙인 새로운 배열을 반환합니다.</dd>
<dt>{{jsxref("Array.prototype.filter()")}}</dt>