19 de janeiro de 2023 • 1 min de leitura
Árvore de Natal no terminal
Como desenhar uma árvore de Natal no terminal?
const drawTree = height => {
for (let i = 0; i < height; i++) {
const stars = "*".repeat(2 * i + 1)
const spacesBefore = " ".repeat(height - i - 1)
console.log(spacesBefore + stars)
}
}
drawTree(3)
Entrada: 3
Saída:
*
***
*****