Posts

Showing posts with the label Battleship

JavaScript Easy Battleship Game

This is a fun and simple way to create a Battleship Game using only JavaScript * Based on example in Head First Javascript Programming by Eric Freeman & Elisabeth Robson JavaScript var randomloc = Math.floor(Math.random() * 20) var loc1 =randomloc; var loc2 = loc1+1; var loc3 =loc2+1; var guess; var hits =0; var guesses = 0;  var isSunk = false; while (isSunk == false){     guess = prompt("Ready aim fire! (enter a # from 1-20):");     if (guess<0 || guess > 20){         alert("Please enter a valid cell #!");     }     else {         guesses = guesses +1;                  if (guess == loc1 || guess == loc2 || guess== loc3){             alert ("Hit");             hits =hits+1;             if (hits ==3...