Skip to content

Instantly share code, notes, and snippets.

@pablocortez
Created July 30, 2016 02:17
Show Gist options
  • Save pablocortez/2ec658b8f77bf745d0075c73784b7aab to your computer and use it in GitHub Desktop.
Save pablocortez/2ec658b8f77bf745d0075c73784b7aab to your computer and use it in GitHub Desktop.
function make2DArray(cols, rows) {
var arr = new Array(cols);
for (var 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