Skip to content

Instantly share code, notes, and snippets.

@wiafe
Created July 15, 2015 17:31
Show Gist options
  • Save wiafe/99e27076ec7896ca741b to your computer and use it in GitHub Desktop.
Save wiafe/99e27076ec7896ca741b to your computer and use it in GitHub Desktop.
Checkerboard Javascript Solution
for (var i = 1; i <= 8; i++) {
if (i % 2 === 0){
console.log(" # # # #");
}else {
console.log("# # # # ");
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment