Typed Arrays
Problem Explanation
- In this challenge, first we need to create a buffer of 64 bytes. We can use
ArrayBuffer()constructor. - After creating a buffer we need to create an Int32Array, for that we can use
Int32Array()constructor.
ArrayBuffer() constructor.Int32Array() constructor.