HTML: Markup language
CSS: Styling language
JavaScript: Scripting language
Web APIs: Programming interfaces
All web technology
Learn web development
Discover our tools
Get to know MDN better
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
This feature is well established and works across many devices and browser versions. It’s been available across browsers since 2015년 7월.
Int8Array 타입 배열은 2의 보수 8비트 부호있는 정수의 배열을 나타냅니다. 배열의 내용은 0으로 초기화됩니다. 배열이 생성되면 객체의 메서드를 사용하거나 표준 배열 인덱스 구문(즉, 대괄호 표기법 사용)을 사용하여 배열의 요소를 참조할 수 있습니다.
Int8Array
0
Int8Array()
새로운 Int8Array 객체를 생성합니다.
부모 TypedArray에서 정적 속성을 상속합니다.
TypedArray
Int8Array.BYTES_PER_ELEMENT
요소 크기를 숫자로 반환합니다. Int8Array의 경우 1입니다..
1
Int8Array.name
생성자 이름을 문자열로 반환합니다. Int8Array의 경우 "Int8Array" 입니다..
"Int8Array"
부모 TypedArray에서 정적 메서드를 상속합니다.
부모 TypedArray에서 인스턴스 속성을 상속합니다.
Int8Array.prototype.BYTES_PER_ELEMENT
요소 크기를 숫자로 반환합니다. Int8Array의 경우 1 입니다.
부모 TypedArray에서 인스턴스 메서드를 상속합니다.
// 길이로부터 생성 const int8 = new Int8Array(2); int8[0] = 42; console.log(int8[0]); // 42 console.log(int8.length); // 2 console.log(int8.BYTES_PER_ELEMENT); // 1 // 배열로부터 생성 const x = new Int8Array([21, 31]); console.log(x[1]); // 31 // 다른 TypedArray로부터 생성 const y = new Int8Array(x); console.log(y[0]); // 21 // ArrayBuffer로부터 생성 const buffer = new ArrayBuffer(8); const z = new Int8Array(buffer, 1, 4); console.log(z.byteOffset); // 1 // 순회로부터 생성 const iterable = (function* () { yield* [1, 2, 3]; })(); const int8FromIterable = new Int8Array(iterable); console.log(int8FromIterable); // Int8Array [1, 2, 3]
Enable JavaScript to view this browser compatibility table.
core-js
ArrayBuffer
DataView