bugl
bugl
HomeLearnPatternsPathsSearch
HomeLearnPatternsPathsSearch

Loading lesson path

Learn/JavaScript/Objects, Classes, and Advanced Patterns
JavaScript•Objects, Classes, and Advanced Patterns

JavaScript Typed Arrays

Flash cards

Review the key moves

1/4
Core idea

What is the main idea behind JavaScript Typed Arrays?

Lesson checks

Practice each idea before moving on

Short Mimo-style checks built from this lesson's code, terms, and sequence.

1Quick choice

Which statement best captures the main point of this lesson?

2Fill blank

Complete the missing token from the example code.

___ myArr = new Uint8Array(5);
3Order

Put the learning moves in the order that makes the concept easiest to apply.

Uint8Array vs Uint8ClampedArray
Differences from Regular Arrays
Typed Array Benefits

Typed Arrays

Typed arrays was designed for handling Binary Data .

Unlike arrays, typed arrays are buffers of Fixed Length .

Typed arrays store elements of Fixed Types like 8-bit integers or 32-bit numbers.

Examples

const myArr = new Uint8Array(5);

Typed Array Benefits

Typed Arrays were designed to provide an efficient way to handle binary data, unlike traditional JavaScript arrays which can hold elements of mixed data types.

Typed arrays are raw memory, so JavaScript can pass them directly to any function without converting the data to another representation.

Typed arrays are seriously faster than normal arrays for passing data to functions that can use raw binary data. Typed Arrays are highly suitable for:

  • WebGL and Canvas : Fast graphics rendering and image processing.
  • File APIs : Fast reading and writing of local files.
  • Media APIs : Fast handling of audio and video data.
  • WebSockets : Efficient binary data transfer over network.

Typed arrays provide a way to handle binary data as efficiently as arrays work in C.

Fetch API Example

fetch(url)
.then(request => request.arrayBuffer())
.then(arrayBuffer =>...);

Canvas Example

const canvas = document.getElementById('my_canvas');
const context = canvas.getContext('2d');
const imageData = context.getImageData(0, 0, canvas.width, canvas.height);
const uint8ClampedArray = imageData.data;

Differences from Regular Arrays

  • Fixed Length: Typed Arrays cannot be dynamically resized using methods like push() or pop().
  • Type Restriction: Elements must adhere to the specified data type of the typed array.
  • Underlying Buffer: Typed Arrays are views into an ArrayBuffer, allowing direct manipulation of binary data.

Typed Array Types

NameMinMaxBytesType
Int8Array-1281271byte
Uint8Array02551octet
Uint8ClampedArray02551octet
Int16Array-32768327672short
Uint16Array0655352unsigned short
Int32Array-214748364821474836474long
Uint32Array042949672954unsigned long
BigInt64Array-2 632 63 - 18bigint
BigUint64Array02 64 - 18unsigned bigint
Float16Array-65504655042unrestricted half
Float32Array-3.4e383.4e384unrestricted float
Float64Array-1.8e3081.8e3088unrestricted double

8 Bit Integers

NameData TypeRange
Int8ArraySigned integer (byte)-128/127
Uint8ArrayUnsigned integer (octet)0/255
Uint8ClampedArrayUnsigned integer (octet)0/255

Examples

const myArr = new Int8Array(10);

Uint8Array vs Uint8ClampedArray

The difference between an Uint8Array and an Uint8ClampedArray is how values are added.

If you set one element in an Uint8ClampedArray to a value outside the 0-255 range, it will default to 0 or 255.

A typed array will just take the first 8 bits of the value.

Typed arrays are not arrays.

isArray() on a typed array returns false.

Many array methods (like push and pop) are not supported by typed arrays.

16-Bits Integers

NameData TypeRange
Int16ArrayShort integer-32768/32767
Uint16ArrayUnsigned short integer0/65535

Examples

const myArr = new Int16Array(10);

32-Bit Integers

NameData TypeRange
Int32ArraySigned long integer-2147483648 / 2147483647
Uint32ArrayUnsigned long integer0 / 4294967295

Examples

const myArr = new Int32Array(10);

64-Bit Integers

NameData TypeRange
BigInt64ArrayBig signed integer-2 63 /2 63 -1
BigUint64ArrayBig unsigned integer0/2 64

Examples

const myArr = new Bigint64Array(10);

Floating Point Numbers

NameDescriptionRange
Float16ArrayHalf precision - 3 significant decimal digits-65504 / 65504
Float32ArrayNormal precision - 7 significant decimal digits-3.4e38 / 3.4e38
Float64ArrayDouble precision- 15 significant decimal digits-1.8e308 / 1.8e308

As specified by the ECMAScript standard, arithmetic in JavaScript shall be done using double-precision floating-point arithmetic:

Examples

const myArr = new Float16Array(10);

Learn More

Typed Array Methods

Typed Array Reference

Array Buffers

DataViews

Atomics

Browser Support

Typed Arrays is an ES6 feature .

ES6 is fully supported in all modern browsers since June 2017:

Chrome 51Edge 15Firefox 54Safari 10Opera 38
May 2016Apr 2017Jun 2017Sep 2016Jun 2016

Previous

JavaScript Proxy

Next

Typed Array Methods