Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript problem with switch Reply To: problem with switch

#153646
Alen
Participant
function showMaxSpeed(s){
  switch(s){
    case "bmw":
      alert("300mph");
      break;
    case "ford":
      alert("250mph");
      break;
    case "dodge":
      alert("220mph");
      break;
  }
}

showMaxSpeed("ford"); // 250mph