Computer Science, asked by siddharthx2006, 8 months ago

What is the sequence of matching of the value of the switch expression with various case values?​

Answers

Answered by JENNY2007
0

Answer:

ot can help you

Explanation:

Second, the only way to use switch with multiple variables is to combine them into one primitive (string, number, etc) value: var stateA = "foo"; var stateB = "bar"; switch (stateA + "-" + stateB) { case "foo-bar": ... ... }

Similar questions