Skip to content

Instantly share code, notes, and snippets.

@kulte
Last active December 11, 2015 07:29
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 kulte/4567086 to your computer and use it in GitHub Desktop.
Save kulte/4567086 to your computer and use it in GitHub Desktop.
/* state === [2, 2, 2, -1, -1, -1, -1, 1, 1] */
Board.prototype.isWinner = function () {
/* ... */
else if ((this.state[0] == this.state[1] == this.state[2] == 2)
/**
* if (2 == 2) returns true
* if (true == 2) returns false
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment