Sometimes, we want to use a condition in switch case with JavaScript.
In this article, we’ll look at how to use a condition in switch case with JavaScript.
How to use a condition in switch case with JavaScript?
To use a condition in switch case with JavaScript, we replace the switch statement with if statements.
For instance, we write
if (liCount === 0) {
setLayoutState("start");
} else if (liCount <= 5) {
setLayoutState("upload1Row");
} else if (liCount <= 10) {
setLayoutState("upload2Rows");
}
to use if statements to check the value of liCount
.
In each block, we call setLayoutState
with various values according to the liCount
value.
Conclusion
To use a condition in switch case with JavaScript, we replace the switch statement with if statements.