Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created December 15, 2016 11:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/b405ed070c67eb2328d2617cf1d490f7 to your computer and use it in GitHub Desktop.
Save codecademydev/b405ed070c67eb2328d2617cf1d490f7 to your computer and use it in GitHub Desktop.
Codecademy export
var gaming = prompt("Xbox, PS4, of the master race of a PC?");
switch (gaming) {
case 'Xbox':
console.log("Good choice young padewan. The force is strong with you!");
break;
case 'PS4':
console.log("Get out of here...");
break;
case 'PC':
console.log("I accept your decision.");
break;
default:
console.log("It is either, Xbox or PS4... no " + gaming);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment