//Javascript switch conditional syntax: switch(var) { case enterPotentialValueOfVarHere : block of code here; break; case anotherPotentialValueOfVar : block of code here; break; default: optional block of code here: }