View RSS feed

Zero Filled Array

Published: Oct 1, 2024Source

You can create a zero using Uint8Array, Uint16Array, or Uint32Array

new Uint8Array(3);
// [0, 0, 0]

Alternatively you can also use the following pattern

Array(3).fill(0);
// [0, 0, 0]

note: Array() and new Array() are equivalent source