Created
September 30, 2021 06:17
-
-
Save ridheshcybe/bc730efd20fddf3fb709e818792ddc65 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function make2darray(cols,rows){ | |
var arr = new Array(cols); | |
for(vae 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