Created
December 22, 2018 07:13
-
-
Save tuckcodes/def819dbb4997869f2dc7e2f18844e20 to your computer and use it in GitHub Desktop.
Simple triangle thing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Triangle Loop | |
// Just making a triangle kinda thing in the console | |
let charPound = "#"; | |
for (let index = 0; index < 8; index++) { | |
console.log(charPound.repeat(index)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment