function printLeftAlignedTriangle(height) {
for (let i = 1; i <= height; i++) {
let row = '';
// Add stars
// for (let j = 0; j < i; j++) {
// row += '*';
// }
for(let j = height-1; j >= i; j--){
row += '*';
//console.log(row);
}
console.log(row);
}
}
printLeftAlignedTriangle(5);
No comments:
Post a Comment