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":


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

1 Expert Approved Answer
Step: 1 Unlock

Looks like theres a small syntax error in the code there... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!