Skip to content

Instantly share code, notes, and snippets.

@myquery
Created November 23, 2019 11:16
Show Gist options
  • Save myquery/4cb0757d70ae667ea0fba357866f8baa to your computer and use it in GitHub Desktop.
Save myquery/4cb0757d70ae667ea0fba357866f8baa to your computer and use it in GitHub Desktop.
Creating Multidimensional array
let arr = new Array(4); for(let i = 0; i < 4; i++){ arr[i] = new Array(4); for(let j = 0; j < 4; j++){arr[i][j] = ‘[‘ + i + ‘,’ + j +’]’;}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment