This page was translated from English by the community.Learn more and join the MDN Web Docs community.
Uint8Array
Baseline Widely available *
This feature is well established and works across many devices and browser versions. It’s been available across browsers since 2015년 7월.
* Some parts of this feature may have varying levels of support.
Uint8Array 형식화 배열(TypedArray)은 플랫폼의 바이트 순서를 따르는 8비트 부호 없는 정수의 배열을 나타냅니다.배열의 내용은 0으로 초기화됩니다.배열이 생성되면 객체의 메서드를 사용하거나 표준 배열 인덱스 구문(즉, 대괄호 표기법 사용)을 사용하여 배열의 요소를 참조할 수 있습니다.
In this article
생성자
Uint8Array()새로운
Uint8Array객체를 생성합니다.
정적 속성
부모TypedArray에서 정적 속성을 상속합니다.
Uint8Array.BYTES_PER_ELEMENT요소 크기를 숫자 값으로 반환합니다.
Uint8Array의 경우1입니다.Uint8Array.name생성자 이름을 문자열로 반환합니다.
Uint8Array타입의 경우"Uint8Array"입니다.
정적 메서드
부모TypedArray에서 정적 메서드를 상속합니다.
인스턴스 속성
부모TypedArray에서 인스턴스 속성을 상속합니다.
Uint8Array.prototype.BYTES_PER_ELEMENT요소 크기를 숫자 값으로 반환합니다.
Uint8Array의 경우1입니다.
인스턴스 메서드
부모TypedArray에서 인스턴스 메서드를 상속합니다.
예제
>Uint8Array을 생성하기 위한 각기 다른 여러 방법
// 길이로부터 생성const uint8 = new Uint8Array(2);uint8[0] = 42;console.log(uint8[0]); // 42console.log(uint8.length); // 2console.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® 2026 Language Specification> # sec-typedarray-objects> |