Skip to content

Instantly share code, notes, and snippets.

@koalahamlet
Created November 20, 2014 23:04
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 koalahamlet/c4e07a1aba1b7a680aa0 to your computer and use it in GitHub Desktop.
Save koalahamlet/c4e07a1aba1b7a680aa0 to your computer and use it in GitHub Desktop.
for (var i = 1; i < 13; i++) {
var str = "";
for (var j = 1; j < 13; j++) {
var num = i*j;
var spacer;
if (num <= 9) {
spacer = " "
}
else if (num <= 99 ){
spacer = " "
} else {
spacer = " "
}
str += i*j + spacer;
}
console.log(str);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment