Skip to content

Instantly share code, notes, and snippets.

@anonymoustafa
Created December 17, 2021 11:04
Show Gist options
  • Select an option

  • Save anonymoustafa/1b0ad3b880eeea9d27b7b78a1bacf11e to your computer and use it in GitHub Desktop.

Select an option

Save anonymoustafa/1b0ad3b880eeea9d27b7b78a1bacf11e to your computer and use it in GitHub Desktop.
Drawing triangles in terminal using nodejs.
let s = "*";
for (; s.length < 99; s = "*" + s)
console.log(s);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment