Skip to content

Instantly share code, notes, and snippets.

@nake89
Created September 20, 2018 15:51
Show Gist options
  • Save nake89/f10ac853fecc1d1df6557ef3b6028a9e to your computer and use it in GitHub Desktop.
Save nake89/f10ac853fecc1d1df6557ef3b6028a9e to your computer and use it in GitHub Desktop.
Create multidimensional array in javascript
class Mulda {
constructor(a, b) {
var mulda = new Array(a)
for (var x = 0; x < a; x++) {
mulda[x] = new Array(b)
}
return mulda
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment