Skip to content

Instantly share code, notes, and snippets.

@ljbatwh
Last active May 13, 2020 21:39
Show Gist options
  • Save ljbatwh/39fc51e452ef5cda4195a1cf5c963045 to your computer and use it in GitHub Desktop.
Save ljbatwh/39fc51e452ef5cda4195a1cf5c963045 to your computer and use it in GitHub Desktop.
create a matrix in javascript
function matrix(r,c,initialValue){
Array(r).fill(initialValue).map(()=>Array(c).fill(initialValue))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment