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

Uint16Array - JavaScript | MDN

MDN Web Docs

View in English Always switch to English

Uint16Array

Baseline

20157

Uint16Array 16 DataView 0

Uint16Array TypedArray

Uint16Array()

Uint16Array

TypedArray

Uint16Array.BYTES_PER_ELEMENT

Uint16Array 2

TypedArray

TypedArray

Uint16Array.prototype Uint16Array

Uint16Array.prototype.BYTES_PER_ELEMENT

Uint16Array 2

Uint16Array.prototype.constructor

Uint16Array Uint16Array

TypedArray

Uint16Array

js
// 
const uint16 = new Uint16Array(2);
uint16[0] = 42;
console.log(uint16[0]); // 42
console.log(uint16.length); // 2
console.log(uint16.BYTES_PER_ELEMENT); // 2

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

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

// ArrayBuffer 
const buffer = new ArrayBuffer(16);
const z = new Uint16Array(buffer, 2, 4);
console.log(z.byteOffset); // 2

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

ECMAScript 2027 LanguageSpecification
# sec-typedarray-objects


Web Proxy Viewer  |  New URL  |  Original Page