Skip to content

Instantly share code, notes, and snippets.

@dubistdu
Created November 21, 2019 14:10
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 dubistdu/cdc4637afa39da9e3fbd283f8ca6c802 to your computer and use it in GitHub Desktop.
Save dubistdu/cdc4637afa39da9e3fbd283f8ca6c802 to your computer and use it in GitHub Desktop.
function pyramid(n) {
return Array(n).fill(1).map((elemeent, index) => Array(index + 1).fill(1));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment