Quotes help make search much faster. Example: "Practice Makes Perfect"

Monday, December 3, 2012

Codecademy: Codeyear Switch it up


//sample solution


var born = prompt("What country were you born in?");
var result;

// write the whole switch statement
switch(born){
case "USA":
result = 1;
break;
case "England":
result = 2;
break;
default:
result = 3;
}

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts