Skip to content

Instantly share code, notes, and snippets.

@coreyrothwell
Created November 6, 2013 00:27
Show Gist options
  • Save coreyrothwell/7328827 to your computer and use it in GitHub Desktop.
Save coreyrothwell/7328827 to your computer and use it in GitHub Desktop.
JavaScript Multiplication Table Weeeeeeeeeeeeeeeeeeee!!!
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