Skip to content

Instantly share code, notes, and snippets.

@musicq
Created February 22, 2020 18:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save musicq/2657ddc255e29a85ef6034d4bcef0c0c to your computer and use it in GitHub Desktop.
Save musicq/2657ddc255e29a85ef6034d4bcef0c0c to your computer and use it in GitHub Desktop.
Declare a binary array
let binaryArray = new Array(5).fill(new Array(10));
// or maybe more dimension
let arr = new Array(5).fill(new Array(10).fill(new Array(15)));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment