JavaScript – break

break: It is a branching statement that terminates the flow of loop or switch

<html>
            <body>
                        <script>
                                    for(var i=1 ; i<=10 ; i++){
                                                if(i>5){
                                                            break;
                                                }
                                                document.write(“i val : ” + i + “<br/>”);
                                    }
                        </script>
            </body>
</html>

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