Created
February 23, 2016 00:44
-
-
Save leeyspaul/9ab61570a86240336e3e to your computer and use it in GitHub Desktop.
JavaScript Looping Triangle Exercise
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
for ( var y = "#"; y.length <= 7; y += "#" ) { | |
console.log(y); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment