Advertisement
Guest User

Untitled

a guest
Aug 27th, 2014
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var invalidChoice = function(userChoice) {
  2.     if(userChoice !== "rock") {
  3.         return "Your choice is invalid!";
  4.     }
  5.     else if(userChoice !== "paper") {
  6.         return "Your choice is invalid!";
  7.     }
  8.     else if(userChoice !== "scissors") {
  9.         return "Your choice is invalid!";
  10.     }
  11. };
  12.  
  13. //console.log(invalidChoice(userChoice));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement