Skip to content

Instantly share code, notes, and snippets.

@spektraldevelopment
Created September 21, 2018 15:07
Show Gist options
  • Save spektraldevelopment/af2a04614c0546955f5da424971e3beb to your computer and use it in GitHub Desktop.
Save spektraldevelopment/af2a04614c0546955f5da424971e3beb to your computer and use it in GitHub Desktop.
JS: Steps
function steps(n) {
for (let row = 0; row < n; row++) {
let stair = "";
for (let column = 0; column < n; column++) {
if (column <= row) {
stair += "#";
} else {
stair += " ";
}
}
console.log(stair);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment