JavaScript – Switch Case

Switch:

  • The switch statement is used to perform different actions based on different conditions.
  • Use the switch statement to select one of many code blocks to be executed.
<!DOCTYPE html>
<html>
            <body>
                        <p id=”demo”></p>
                        <script>
                                    let text;
                                    switch (new Date().getDay())
                                    {
                                                case 6: text = “Today is Saturday”;
                                                                        break;
                                                case 0: text = “Today is Sunday”;
                                                                        break;
                                                default:text = “Looking forward to the Weekend”;
                                    }
                                    document.getElementById(“demo”).innerHTML = text;
                        </script>
            </body>
</html>
Scroll to Top