Skip to content

Instantly share code, notes, and snippets.

@abhiaiyer91
Last active July 26, 2019 16:09
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 abhiaiyer91/c091d722aefe5e19bd61bf9616892560 to your computer and use it in GitHub Desktop.
Save abhiaiyer91/c091d722aefe5e19bd61bf9616892560 to your computer and use it in GitHub Desktop.
// Print out the grade-school multiplication table up to 12x12
function multiplicationTable(maxValue) {
for (var i = 1; i <= maxValue; i++) {
let line
for (var j = 1; j <= maxValue; j++) {
line = line + ` ${j * i}`;
}
console.log(line)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment