Guest User

Untitled

a guest
May 20th, 2018
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. function checkGameEnd(winner) { //проверяем, не закончена ли игра
  2. if ((window.cells[0] == true) && (window.cells[1] == true) && (window.cells[2] == true)) ||
  3. ((window.cells[0] == true) && (window.cells[3] == true) && (window.cells[6] == true)) ||
  4. ((window.cells[0] == true) && (window.cells[4] == true) && (window.cells[8] == true)) ||
  5. ((window.cells[1] == true) && (window.cells[4] == true) && (window.cells[7] == true)) ||
  6. ((window.cells[2] == true) && (window.cells[5] == true) && (window.cells[8] == true)) ||
  7. ((window.cells[2] == true) && (window.cells[4] == true) && (window.cells[6] == true)) ||
  8. ((window.cells[3] == true) && (window.cells[4] == true) && (window.cells[5] == true)) ||
  9. ((window.cells[6] == true) && (window.cells[7] == true) && (window.cells[8] == true)) {
  10. document.getElementById('result').innerHTML = winner;
  11. document.getElementById('result').appendChild(document.createTextNode(' won!'));
  12. }
  13. }
Add Comment
Please, Sign In to add comment