📅  最后修改于: 2023-12-03 15:01:39.272000             🧑  作者: Mango
Int8Array.from() 方法用于创建一个新的 Int8Array 数组。它从一个类数组对象或可迭代对象中创建,类似于Array.from() 方法。
Int8Array 是 JavaScript 中的一个类型化数组(TypedArray),它允许程序员以固定长度的方式存储和操作8位大小的整数。Int8Array.from() 方法为创建 Int8Array 数组提供了便捷的方式。
Int8Array.from(source[, mapFn[, thisArg]])
返回一个新的 Int8Array 数组。
let arr = {0: 10, 1: 20, 2: 30, length: 3};
let int8Arr = Int8Array.from(arr);
console.log(int8Arr); // 输出: Int8Array [10, 20, 30]
console.log(int8Arr instanceof Int8Array); // 输出: true
let iterable = 'Hello World';
let int8Arr = Int8Array.from(iterable, char => char.charCodeAt(0));
console.log(int8Arr); // 输出: Int8Array [72, 101, 108, 108, 111, 32, 87, 111, 114, 108, 100]
console.log(int8Arr instanceof Int8Array); // 输出: true
let iterable = [1, 2, 3, 4];
let int8Arr = Int8Array.from(iterable, num => num * 10);
console.log(int8Arr); // 输出: Int8Array [10, 20, 30, 40]
console.log(int8Arr instanceof Int8Array); // 输出: true