The Uint16Array typed array represents an array of 16-bit unsigned integers in the platform byte order. If control over byte order is needed, use DataView instead. The contents are initialized to 0 unless initialization data is explicitly provided. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation)....Constructor Uint16Array() Creates a new Uint16Array object. Static properties...From a length const uint16 = new Uint16Array(2); uint16[0] = 42;...