Created
February 22, 2020 18:04
-
-
Save musicq/2657ddc255e29a85ef6034d4bcef0c0c to your computer and use it in GitHub Desktop.
Declare a binary array
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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