Skip to content

Instantly share code, notes, and snippets.

@GedMullen
Last active November 4, 2015 11:20
Show Gist options
  • Save GedMullen/86c72d391e38aaa4172a to your computer and use it in GitHub Desktop.
Save GedMullen/86c72d391e38aaa4172a to your computer and use it in GitHub Desktop.
var i = 2;
for (i; i < process.argv.length; i++) {
if (process.argv[i] == "black") {
console.log("You chose black");
} else if (process.argv[i] == "white") {
console.log("You chose white");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment