Created
January 3, 2017 07:05
-
-
Save nailkhasipov/e60a7c4e3021d4b02bc806e0b5160476 to your computer and use it in GitHub Desktop.
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
/* | |
Write a loop that makes seven calls to console.log to output the following triangle: | |
# | |
## | |
### | |
#### | |
##### | |
###### | |
####### | |
*/ | |
for (var line = "#"; line.length < 8; line += "#") | |
console.log(line); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment