Last active
August 29, 2015 14:08
-
-
Save mr-fool/165333477c212d3acbab to your computer and use it in GitHub Desktop.
triangle
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
<html><script language="JavaScript" src="triangle.js"> | |
</script> </html> |
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
var column = 1; | |
var row = 1; | |
var s = "#"; | |
for (; column <= 7; column += 1) { | |
for (; row <= column; row += 1) { | |
console.log(s); | |
} | |
s+= '#'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
var s = '#', i = 0;
while(i < 7) {
console.log(s);
s+= '#';
i++;
}
by yansanmo