Advertisement
drakon-firestone

Funkcja Sprawdz Wygrana

Aug 11th, 2023
1,023
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function sprawdzWygrana() {
  2.   licznikTur++;
  3.   if (
  4.     przyciski[0].textContent == przyciski[1].textContent &&
  5.     przyciski[1].textContent == przyciski[2].textContent &&
  6.     przyciski[1].textContent != ""
  7.   ) {
  8.     console.log("zwycięstwo");
  9.   } else if (
  10.     przyciski[3].textContent == przyciski[4].textContent &&
  11.     przyciski[3].textContent == przyciski[5].textContent &&
  12.     przyciski[4].textContent != ""
  13.   ) {
  14.     console.log("zwycięstwo");
  15.   } else if (
  16.     przyciski[6].textContent == przyciski[7].textContent &&
  17.     przyciski[7].textContent == przyciski[8].textContent &&
  18.     przyciski[7].textContent != ""
  19.   ) {
  20.     console.log("zwycięstwo");
  21.   } else if (
  22.     przyciski[0].textContent == przyciski[3].textContent &&
  23.     przyciski[3].textContent == przyciski[6].textContent &&
  24.     przyciski[3].textContent != ""
  25.   ) {
  26.     console.log("zwycięstwo");
  27.   } else if (
  28.     przyciski[1].textContent == przyciski[4].textContent &&
  29.     przyciski[4].textContent == przyciski[7].textContent &&
  30.     przyciski[4].textContent != ""
  31.   ) {
  32.     console.log("zwycięstwo");
  33.   } else if (
  34.     przyciski[2].textContent == przyciski[5].textContent &&
  35.     przyciski[5].textContent == przyciski[8].textContent &&
  36.     przyciski[5].textContent != ""
  37.   ) {
  38.     console.log("zwycięstwo");
  39.   } else if (
  40.     przyciski[0].textContent == przyciski[4].textContent &&
  41.     przyciski[4].textContent == przyciski[8].textContent &&
  42.     przyciski[8].textContent != ""
  43.   ) {
  44.     console.log("zwycięstwo");
  45.   } else if (
  46.     przyciski[2].textContent == przyciski[4].textContent &&
  47.     przyciski[4].textContent == przyciski[6].textContent &&
  48.     przyciski[4].textContent != ""
  49.   ) {
  50.     console.log("zwycięstwo");
  51.   } else if (licznikTur == 9) {
  52.     info.textContent = "remis!";
  53.   }
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement