Question: What is displayed when the following code executes? var statusCode = 403: switch ( statusCode) ( case 200: } alert (OK); break; case 403:

What is displayed when the following code executes? var statusCode = "403": switch ( statusCode) ( case "200": } alert ("OK"); break; case "403": alert ("Forbidden"); break; case "404": alert ("Not Found"); break; default: alert ("Unknown Status"); break;
Step by Step Solution
There are 3 Steps involved in it
Looks like theres a small syntax error in the code there... View full answer
Get step-by-step solutions from verified subject matter experts
