Sets a value or an array of values.
set(array, offset?)
array
A typed or untyped array of values to set.
offset optional
The index in the current array at which the values are to be written.
let x = new Uint32Array(5)
x.set([1, 2, 3], 2)
x
Uint32Array [0, 0, 1, 2, 3]