JavaScript Algorithm: Looping A Triangle
Creating a half triangle
Today we are going to write a program that will console log a half triangle. The half triangle will need to be seven rows tall and consist of nothing but the #
character.
Here is an example:
#
##
###
####
#####
######
#######