Skip to content

Instantly share code, notes, and snippets.

@leeyspaul
Created February 23, 2016 00:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leeyspaul/9ab61570a86240336e3e to your computer and use it in GitHub Desktop.
Save leeyspaul/9ab61570a86240336e3e to your computer and use it in GitHub Desktop.
JavaScript Looping Triangle Exercise
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