[ Web Proxy ]
URL:
Viewing: https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array/Uint8Array [Back]  [Original]

Uint8Array() constructor - JavaScript | MDN

This page was translated from English by the community. Learn more and join the MDN Web Docs community.

View in English Always switch to English

Uint8Array() constructor

Baseline Widely available

This feature is well established and works across many devices and browser versions. Its been available across browsers since 2015 7.

Uint8Array() 8 (TypedArray) . 0 . (, ) .

In this article

js
new Uint8Array()
new Uint8Array(length)
new Uint8Array(typedArray)
new Uint8Array(object)

new Uint8Array(buffer)
new Uint8Array(buffer, byteOffset)
new Uint8Array(buffer, byteOffset, length)

: Uint8Array() new . new TypeError

TypedArray .

TypedArray .

Uint8Array

js
//  
const uint8 = new Uint8Array(2);
uint8[0] = 42;
console.log(uint8[0]); // 42
console.log(uint8.length); // 2
console.log(uint8.BYTES_PER_ELEMENT); // 1

// 
const x = new Uint8Array([21, 31]);
console.log(x[1]); // 31

//  TypedArray
const y = new Uint8Array(x);
console.log(y[0]); // 21

// ArrayBuffer
const buffer = new ArrayBuffer(8);
const z = new Uint8Array(buffer, 1, 4);
console.log(z.byteOffset); // 1

// 
const iterable = (function* () {
  yield* [1, 2, 3];
})();
const uint8FromIterable = new Uint8Array(iterable);
console.log(uint8FromIterable);
// Uint8Array [1, 2, 3]

Specification
ECMAScript 2027 LanguageSpecification
# sec-typedarray-constructors


Web Proxy Viewer  |  New URL  |  Original Page