Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
You attempted to use the default statement more than once within a switch statement. The default case is always the last case statement in a switch statement (it is the fall-through case).
To correct this error
- Remove any extra default case statements from your
switch
statement (use at most one default case statement in your switch statement).
See also
switch Statement
Controlling Program Flow
JavaScript Reserved Words