Skip to content

Instantly share code, notes, and snippets.

@KimSarabia
Last active October 17, 2015 22:17
Show Gist options
  • Save KimSarabia/f95bcba16020479d2a72 to your computer and use it in GitHub Desktop.
Save KimSarabia/f95bcba16020479d2a72 to your computer and use it in GitHub Desktop.
Eloquent Javascript Ch. 2 Q3
for (var i = 0; i < 4; i++) {
console.log(" "+"#"+" "+"#"+" "+"#"+" "+"#"+"\n");
for (var j = 0; j < 1; j++) {
console.log("#"+" "+"#"+" "+"#"+" "+"#"+" "+"\n");
}
}
// Answer:
// # # # #
// # # # #
// # # # #
// # # # #
// # # # #
// # # # #
// # # # #
// # # # #
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment