Commonly Utilized JavaScript Methods Part IIII - TypedArray, Map, and Set
Welcome back to the series, this article is covering objects/structures - TypedArray, Map and Set. What is a TypedArray? It is a data structure that hosts specific elements types in the confines of an array. The various element types that are associated with TypedArrays are 9: 1. Int8Array utilized to store byte type elements/integers ranging from -128-127. 2. Unit8Array utilized to store octet type elements/integers ranging from 0 to 255. 3. Unit8ClampedArray utilized to store octet type elements/integers ranging from 0 to 255 but they differ from Unit8Array - due to it being clamped. 4. Int16Array utilized to store long type elements/integers ranging from -32668-32767. 5.Unit16Array utilized to store unsigned short type elements/integers ranging from 0 to 65535. 6. Int32Array utilized to store long types as well with 32-bit signed integers ranging from -2147483648-214786347. 7. Uint32Array utilized to store unsigned long types with 32-bit unsigned inte...