| [ Web Proxy ] |
| Viewing: https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/BigUint64Array | [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 2021 9.
Uint16Array (TypedArray) 64 .
DataView . 0n .
(, ) .
BigUint64Array() BigUint64Array .
BigUint64Array.BYTES_PER_ELEMENT . BigUint64Array 8 .
BigUint64Array.name . BigUint64Array "BigUint64Array".
BigUint64Array.prototype.BYTES_PER_ELEMENT . BigUint64Array 8 .
BigUint64Array //
const biguint64 = new BigUint64Array(2);
biguint64[0] = 42n;
console.log(biguint64[0]); // 42n
console.log(biguint64.length); // 2
console.log(biguint64.BYTES_PER_ELEMENT); // 8
//
const x = new BigUint64Array([21n, 31n]);
console.log(x[1]); // 31n
// TypedArray
const y = new BigUint64Array(x);
console.log(y[0]); // 21n
// ArrayBuffer
const buffer = new ArrayBuffer(64);
const z = new BigUint64Array(buffer, 8, 4);
console.log(z.byteOffset); // 8
//
const iterable = (function* () {
yield* [1n, 2n, 3n];
})();
const biguint64FromIterable = new BigUint64Array(iterable);
console.log(biguint64FromIterable);
// BigUint64Array [1n, 2n, 3n]
| Specification |
|---|
| ECMAScript 2027 LanguageSpecification # sec-typedarray-objects |
This page was last modified on 2026 7 15 by MDN contributors.
BigUint64ArrayTypedArrayTypedArray.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()BigInt64ArrayFloat16ArrayFloat32ArrayFloat64ArrayInt8ArrayInt16ArrayInt32ArrayUint8ArrayUint8ClampedArrayUint16ArrayUint32ArrayYour 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 |