Created
November 6, 2013 00:27
-
-
Save coreyrothwell/7328827 to your computer and use it in GitHub Desktop.
JavaScript Multiplication Table Weeeeeeeeeeeeeeeeeeee!!!
This file contains 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 res = ''; | |
for(var i = 1; i <= 20; i++){ | |
for(var j = 1; j <= 20; j++){ | |
res += (i * j) + "\t\t"; | |
} | |
console.log(res+"\n"); | |
res = ''; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment