Skip to content

Instantly share code, notes, and snippets.

@nailkhasipov
Created January 3, 2017 07:05
Show Gist options
  • Save nailkhasipov/e60a7c4e3021d4b02bc806e0b5160476 to your computer and use it in GitHub Desktop.
Save nailkhasipov/e60a7c4e3021d4b02bc806e0b5160476 to your computer and use it in GitHub Desktop.
/*
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