You could use set to combine multiple typed arrays: const all = new Uint8Array(a1.length + a2.length + a3.length); all.set(a1); all.set(a2, a1.length); ...
確定! 回上一頁