Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function sprawdzWygrana() {
- licznikTur++;
- if (
- przyciski[0].textContent == przyciski[1].textContent &&
- przyciski[1].textContent == przyciski[2].textContent &&
- przyciski[1].textContent != ""
- ) {
- console.log("zwycięstwo");
- } else if (
- przyciski[3].textContent == przyciski[4].textContent &&
- przyciski[3].textContent == przyciski[5].textContent &&
- przyciski[4].textContent != ""
- ) {
- console.log("zwycięstwo");
- } else if (
- przyciski[6].textContent == przyciski[7].textContent &&
- przyciski[7].textContent == przyciski[8].textContent &&
- przyciski[7].textContent != ""
- ) {
- console.log("zwycięstwo");
- } else if (
- przyciski[0].textContent == przyciski[3].textContent &&
- przyciski[3].textContent == przyciski[6].textContent &&
- przyciski[3].textContent != ""
- ) {
- console.log("zwycięstwo");
- } else if (
- przyciski[1].textContent == przyciski[4].textContent &&
- przyciski[4].textContent == przyciski[7].textContent &&
- przyciski[4].textContent != ""
- ) {
- console.log("zwycięstwo");
- } else if (
- przyciski[2].textContent == przyciski[5].textContent &&
- przyciski[5].textContent == przyciski[8].textContent &&
- przyciski[5].textContent != ""
- ) {
- console.log("zwycięstwo");
- } else if (
- przyciski[0].textContent == przyciski[4].textContent &&
- przyciski[4].textContent == przyciski[8].textContent &&
- przyciski[8].textContent != ""
- ) {
- console.log("zwycięstwo");
- } else if (
- przyciski[2].textContent == przyciski[4].textContent &&
- przyciski[4].textContent == przyciski[6].textContent &&
- przyciski[4].textContent != ""
- ) {
- console.log("zwycięstwo");
- } else if (licznikTur == 9) {
- info.textContent = "remis!";
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement