Question: What is displayed when the following code executes? var statusCode = 4 0 3 ; switch ( statusCode ) { case 2

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;
}
Not Found
Forbidden
OK
Unknown Status

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock 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!