Vidyalelo
JavaScript · Q38

Basic And Variables

Programming · JavaScript · question 38

Q38

Consider the following statements switch(expression) statements In the above switch syntax, the expression is compared with the case labels using which of the following operator(s) ?

A.
==
B.
equals
C.
equal
D.
===
Answer

Answer: Option D

Solution

Answer: Option D
Solution:
When a switch executes, it computes the value of expression and then looks for a case label whose expression evaluates to the same value (where sameness is determined by the === operator).