Skip to content

Instantly share code, notes, and snippets.

@KevinTCoughlin
Created October 20, 2015 03:21
Show Gist options
  • Select an option

  • Save KevinTCoughlin/b7e2b746ed9fc0e21ea5 to your computer and use it in GitHub Desktop.

Select an option

Save KevinTCoughlin/b7e2b746ed9fc0e21ea5 to your computer and use it in GitHub Desktop.
JavaScript print multiplication table NxN
function printMultiplicationTable(n) {
for (var i = 1; i < n; i++) {
var str = '';
for (var k = 1; k < n; k++) {
str += i * k + '\t';
}
console.log(str);
}
}
printMultiplicationTable(12);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment