| [ Web Proxy ] |
| Viewing: https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array | [Back] [Original] |
Get to know MDN better
Uint8Array TypedArray Uint8Array 16 base64 2
Uint8Array.fromBase64()Uint8Array.prototype.toBase64()Uint8Array.prototype.setFromBase64() base64 3 4 09, AZ, az, "+", "/" URL base64 "-" "_"Uint8Array.fromHex()Uint8Array.prototype.toHex()Uint8Array.prototype.setFromHex() 16 2 09 AF Uint8Array() Uint8Array
Uint8Array.BYTES_PER_ELEMENTUint8Array 1
Uint8Array.fromBase64()base64 Uint8Array
Uint8Array.fromHex()16 Uint8Array
Uint8Array.prototype Uint8Array
Uint8Array.prototype.BYTES_PER_ELEMENTUint8Array 1
Uint8Array.prototype.constructor `Uint8Array Uint8Array
Uint8Array.prototype.setFromBase64() Uint8Array base64
Uint8Array.prototype.setFromHex() Uint8Array 16
Uint8Array.prototype.toBase64() Uint8Array base64
Uint8Array.prototype.toHex() Uint8Array 16
//
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]
| ECMAScript 2027 LanguageSpecification # sec-typedarray-objects |
| Web Proxy Viewer | New URL | Original Page |