OK here I will show the switch case usage of js. This is my 6 th Java Script tutorial and I have followed more basics on last 5 tutorials. You can check them in blog. https://chamzzdot.blogspot.com/ Ok let’s move on. Switch statement This works like if else statement. But it is more efficient and no need to code much like if else. Think you have 5 marks for your mathematics paper. This is the grade list in your college that depend on your marks. Assume that the maximum score is 6.😉 6 =A 5 =B 4 =C 3 =D 2 = E 1 = F So you need to write js program to find your grade. For now you have to remember what you can use for that. Yes, it is if else. See this, Figure 1 But we can get the same result with more efficient code by using switch case. OK I will explain switch case using flow chart first. Figure 2 Ok I will explain what the flow chart says. First we have to go inside to the switch case by having a situation (case). But inside the progra...