| [ Web Proxy ] |
| Viewing: https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/at | [Back] [Original] |
Get to know MDN better
This page was translated from English by the community. Learn more and join the MDN Web Docs community.
This feature is well established and works across many devices and browser versions. Its been available across browsers since 2022 3.
TypedArray at() , . . Array.prototype.at() .
const int8 = new Int8Array([0, 10, -10, 20, -30, 40, -50]);
let index = 1;
console.log(`An index of ${index} returns the item ${int8.at(index)}`);
// Expected output: "An index of 1 returns the item 10"
index = -2;
console.log(`An index of ${index} returns the item ${int8.at(index)}`);
// Expected output: "An index of -2 returns the item 40"
at(index)
. index < -array.length index >= array.length , undefined .
Array.prototype.at() . , .
.
const uint8 = new Uint8Array([1, 2, 4, 7, 11, 18]);
//
function returnLast(arr) {
return arr.at(-1);
}
const lastItem = returnLast(uint8);
console.log(lastItem); // 18
TypedArray . , at() .
//
const uint8 = new Uint8Array([1, 2, 4, 7, 11, 18]);
// length
const lengthWay = uint8[uint8.length - 2];
console.log(lengthWay); // 11
// slice() .
const sliceWay = uint8.slice(-2, -1);
console.log(sliceWay[0]); // 11
// at()
const atWay = uint8.at(-2);
console.log(atWay); // 11
| Specification |
|---|
| ECMAScript 2027 LanguageSpecification # sec-%typedarray%.prototype.at |
TypedArray.prototype.at in core-jsTypedArrayTypedArray.prototype.findIndex()TypedArray.prototype.indexOf()TypedArray.prototype.with()Array.prototype.at()String.prototype.at()This page was last modified on 2025 2 11 by MDN contributors.
TypedArrayTypedArray.prototype.at()TypedArray.prototype.copyWithin()TypedArray.prototype.entries()TypedArray.prototype.every()TypedArray.prototype.fill()TypedArray.prototype.filter()TypedArray.prototype.find()TypedArray.prototype.findIndex()TypedArray.prototype.findLast()TypedArray.prototype.findLastIndex()TypedArray.prototype.forEach()includes()TypedArray.prototype.indexOf()TypedArray.prototype.join()TypedArray.prototype.keys()lastIndexOf()TypedArray.prototype.map()TypedArray.prototype.reduce()reduceRight()TypedArray.prototype.reverse()TypedArray.prototype.set()TypedArray.prototype.slice()TypedArray.prototype.some()TypedArray.prototype.sort()TypedArray.prototype.subarray()toLocaleString()TypedArray.prototype.toReversed()TypedArray.prototype.toSorted()TypedArray.prototype.toString()TypedArray.prototype.values()TypedArray.prototype.with()TypedArray.prototype[@@iterator]()Object/FunctionObject.prototype.__defineGetter__()Object.prototype.__defineSetter__()Object.prototype.__lookupGetter__()Object.prototype.__lookupSetter__()Object.prototype.hasOwnProperty()Object.prototype.isPrototypeOf()Object.prototype.propertyIsEnumerable()Object.prototype.toLocaleString()Object.prototype.toString()Object.prototype.valueOf()BigInt64ArrayBigUint64ArrayFloat16ArrayFloat32ArrayFloat64ArrayInt8ArrayInt16ArrayInt32ArrayUint8ArrayUint8ClampedArrayUint16ArrayUint32ArrayYour blueprint for a better internet.
Portions of this content are 19982026 by individual mozilla.org contributors. Content available under a Creative Commons license.
| Web Proxy Viewer | New URL | Original Page |