switch (any type value) { case (any type value) { script } [ default { script } ] }
Switch is used with one or more case
statements and an optional default
statement. It is used to test a variable or object attribute against 2 or more possible values; a shortcut instead of writing many if
statements.
For more, see here