Advertisement
Guest User

Untitled

a guest
Apr 19th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //if lose. . .
  2.   if (lives === 0) {
  3.     document.getElementById("stickfight").innerHTML = "<src="../images/lose.gif"/>";
  4.   }
  5.   //if win!
  6.   if (lives >= 0 && (counter + space === guesses.length)) {
  7.     document.getElementById("stickfight").innerHTML = "<src="../images/stickrun.gif"/>";
  8.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement