Skip to content

Instantly share code, notes, and snippets.

@peponi
Created June 3, 2013 07:46
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 peponi/5696653 to your computer and use it in GitHub Desktop.
Save peponi/5696653 to your computer and use it in GitHub Desktop.
simple javascript two dimension array
// create an two dimension array
function Create2DArray(rows) {
var arr = [];
for (var i=0;i<rows;i++) {
arr[i] = [];
}
return arr;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment