Skip to content

Instantly share code, notes, and snippets.

@michalvavra
Last active July 11, 2024 19:30
Show Gist options
  • Select an option

  • Save michalvavra/e931c1d374627bb20c8d63cd4ed7bfed to your computer and use it in GitHub Desktop.

Select an option

Save michalvavra/e931c1d374627bb20c8d63cd4ed7bfed to your computer and use it in GitHub Desktop.
const buildPyramid = (rows, block = '๐”‘') => {
for (let i = 1; i <= rows; i++) {
const spaces = ' '.repeat(rows - i);
const blocks = block.repeat(2 * i - 1);
console.log(`${spaces}${blocks}${spaces}`);
}
};
buildPyramid(5);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment