Skip to content

Instantly share code, notes, and snippets.

@Bmohsen
Created September 11, 2022 07:37
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 Bmohsen/8a25a750772185aa083bc5a6183013b5 to your computer and use it in GitHub Desktop.
Save Bmohsen/8a25a750772185aa083bc5a6183013b5 to your computer and use it in GitHub Desktop.
2d array JavaScript function
function make2DArray(cols, rows){
let arr = new Array(cols)
for(let i = 0; i < arr.length; i++){
arr[i] = new Array(rows)
}
return arr
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment