Float16Array in JavaScript
Understanding the new 16-bit floating point array in JavaScript
Float16Array is a new type of array in JavaScript that stores 16-bit (2-byte) floating point numbers. It joins the existing family of TypedArrays like Int8Array, Uint8Array, Float32Array, and Float64Array.
If you’ve never used TypedArrays before, think of them as specialized arrays that can only contain specific types of numbers
Unlike regular JavaScript arrays that can mix strings, objects, and numbers, TypedArrays are fixed-size, memory-efficient arrays dedicated to numeric data.

