Árvore de Natal no terminal | Valchan

Á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:

  *
 ***
*****

Comentários