Teachnique
      CourseRoadmaps
      Login

      OverviewPlacementSyntaxHello WorldConsole.log()CommentsVariableslet StatementConstantsData TypesType ConversionsStrict ModeReserved Keywords

      OperatorsArithmetic OperatorsComparison OperatorsLogical OperatorsBitwise OperatorsAssignment OperatorsConditional Operatorstypeof OperatorNullish Coalescing OperatorDelete OperatorComma OperatorGrouping OperatorYield OperatorSpread OperatorExponentiation OperatorOperator Precedence

      If...ElseWhile LoopsFor LoopFor...in LoopFor...of LoopLoop ControlBreak StatementContinue StatementSwitch CaseUser Defined Iterators

      FunctionsFunction ExpressionsFunction ParametersDefault ParametersFunction() ConstructorFunction HoistingArrow FunctionsFunction InvocationFunction call() MethodFunction apply() MethodFunction bind() MethodClosuresVariable ScopeGlobal VariablesSmart Function Parameters

      NumberBooleanStringsArraysDateMathRegExpSymbolSetsWeakSetMapsWeakMapIterablesReflectTypedArrayTempate LiteralsTagged Templates

      Objects OverviewClassesObject PropertiesObject MethodsStatic MethodsDisplay ObjectsObject AccessorsObject ConstructorsNative PrototypesES5 Object MethodsEncapsulationInheritanceAbstractionPolymorphismDestructuring AssignmentObject DestructuringArray DestructuringNested DestructuringOptional ChainingGlobal ObjectMixinsProxies

      HistoryVersionsES5ES6ECMAScript 2016ECMAScript 2017ECMAScript 2018ECMAScript 2019ECMAScript 2020ECMAScript 2021ECMAScript 2022

      CookiesCookie AttributesDeleting Cookies

      Browser Object ModelWindow ObjectDocument ObjectScreen ObjectHistory ObjectNavigator ObjectLocation ObjectConsole Object

      Web APIHistory APIStorage APIForms APIWorker APIFetch APIGeolocation API

      EventsDOM Events

      Feedback

      Submit request if you have any questions.

      Course
      Break Statement

      JavaScript Tutorial

      This JavaScript tutorial is crafted for beginners to introduce them to the basics and advanced concepts of JavaScript. By the end of this guide, you'll reach a proficiency level that sets the stage for further growth. Aimed at empowering you to progress towards becoming a world-class software developer, this tutorial paves the way for a successful career in web development and beyond.

      Break Statement

      The break statement in JavaScript terminates the loop or switch case statement. When you use the break statement with the loop, the control flow jumps out of the loop and continues to execute the other code.
      The break statement can also be used to jump a labeled statement when used within that labeled statement. It is a useful tool for controlling the flow of execution in your JavaScript code.

      Syntax

      The syntax of break statement in JavaScript is as follows
      break;
      OR
      break [label];
      The label is optional with a break statement.
      Note – In the next chapter, we will learn to use the break statement with the label inside the loop.

      Flow Chart

      The flow chart of a break statement would look as follows
      

      Example (break statement with for loop)

      In the example below, we used the for loop to make iterations. We added the conditional expression in the loop using the 'if' statement. When the value of 'x' is 5, it will 'break' the loop using the break statement.
      The below code prints only 1 to 4 values in the output.
      <html>
      <head>
      <title> JavaScript - Break statement </title>
      </head>
      <body>
      <p id = "output"> </p>
      <script>
      const output = document.getElementById("output");
      output.innerHTML += "Entering the loop. <br /> ";
      for (let x = 1; x < 10; x++) {
      if (x == 5) {
      break; // breaks out of loop completely
      }
      output.innerHTML += x + "<br />";
      }
      output.innerHTML += "Exiting the loop!<br /> ";
      </script>
      </body>
      </html>

      Output

      Entering the loop.
      1
      2
      3
      4
      Exiting the loop!

      Example (break statement with the while loop)

      The code below demonstrates the while loop with the 'break' statement. In the while loop, whenever the value of x is either 3 or 7, it will terminate the loop using the 'break' statement.
      In the code, we update the value after checking the condition. So, it will print 3 first and then terminate the loop in the next iteration.
      <html>
      <head>
      <title> JavaScript - Break statement </title>
      </head>
      <body>
      <p id = "output"> </p>
      <script>
      let output = document.getElementById("output");
      var x = 1;
      output.innerHTML += "Entering the loop. <br /> ";
      while (x < 10) {
      if (x == 3 || x == 7) {
      break; // breaks out of loop completely
      }
      x = x + 1;
      output.innerHTML += x + "<br />";
      }
      output.innerHTML += "Exiting the loop!<br /> ";
      </script>
      </body>
      </html>

      Output

      Entering the loop.
      2
      3
      Exiting the loop!

      Break statement with nested loops

      You can use the 'break' statement to jump out of any loop when you have nested loops. For example, if you use the 'break' statement with the parent loop, the code will also terminate all iterations of the nested loop. Using the 'break' statement with the nested loop will terminate only the nested loop.

      Example

      In the example below, x is a looping variable for the parent loop, and y is a looping variable for a child loop.
      In the nested loop, whenever y becomes 3, it will break the loop; in the outer loop, whenever x becomes 3, it will break the loop. You won't see x > 3 or y > 2 in the output.
      <html>
      <head>
      <title> JavaScript - Break statement </title>
      </head>
      <body>
      <p id = "output"> </p>
      <script>
      const output = document.getElementById("output");
      output.innerHTML += "Entering the loop. <br /> ";
      for (let x = 1; x < 10; x++) {
      for (let y = 1; y < 10; y++) {
      if (y == 3) {
      break; // breaks inner loop
      }
      output.innerHTML += x + " " + y + "<br />";
      }
      if (x == 3) {
      break; // break outer loop
      }
      }
      output.innerHTML += "Exiting the loop!<br /> ";
      </script>
      </body>
      </html>

      Output

      Entering the loop.
      1 1
      1 2
      2 1
      2 2
      3 1
      3 2
      Exiting the loop!

      Break statement with switch case statement

      The switch case statement executes one of the code blocks from multiple based on the conditional expression. The 'break' statement terminates the switch case statement after matching one or more cases with the conditional expression's value.

      Example

      In the below code, we used the 'break' statement with each case. Here, the value of variable p works as a conditional expression for the switch case statement. It matches with 'case 10'. So, the code will execute that particular code block and terminate the switch case statement using the 'break' statement.
      <html>
      <head>
      <title> JavaScript - Break statement </title>
      </head>
      <body>
      <p id = "output"> </p>
      <script>
      const output = document.getElementById("output");
      var p = 10;
      switch (p) {
      case 10:
      output.innerHTML = "p is 10";
      break;
      case 20:
      output.innerHTML = "p is 20";
      break;
      case 30:
      output.innerHTML = "p is 30";
      break;
      default:
      output.innerHTML = "p is not 10, 20 or 30";
      }
      </script>
      </body>
      </html>

      Output

      p is 10