JavaScript Tutorial JavaScript References

JavaScript - Break Statement



The break statement in JavaScript is used to terminate the program out of the loop containing it whenever the condition is met.

If the break statement is used in a nested loop (loop inside loop), it will terminate innermost loop after fulfilling the break criteria.

Break statement with While loop

In the example below, break statement is used to get out of the while loop if the value of variable j becomes 4.

var j = 0;
var txt = "";
while (j < 10){
  j++;
  if(j == 4){
    txt = txt + "Getting out of the loop.<br>";
    break;
  }
  txt = txt + "j = " + j + "<br>";
}

The output (value of txt) after running above script will be:

j = 1
j = 2
j = 3
Getting out of the loop.

Break statement with For loop

Here, the break statement is used to get out of the for loop if the value of variable i becomes 4.

var txt = "";
for (i = 1; i <= 6; i++){
  if(i == 4){
    txt = txt + "Getting out of the loop.<br>";
    break;
  }
  txt = txt + "i = " + i + "<br>";
}

The output (value of txt) after running above script will be:

i = 1
i = 2
i = 3
Getting out of the loop.

Break statement with Nested loop

The Break statement terminates the inner loop whenever condition is fulfilled. In below mentioned example, program terminates the inner loop only when j = 100 (resulting the program to skip the inner loop for j = 100 and 1000).

//Nested loop without break statement
var txt = "# Nested loop without break statement<br>";
for (i = 1; i <= 3; i++)
  for (j = 10; j <= 1000; j = j * 10)
    txt = txt + (i*j) + "<br>";

The output (value of txt) after running above script will be:

# Nested loop without break statement
10
100
1000
20
200
2000
30
300
3000
//Nested loop with break statement
var txt = "# Nested loop with break statement<br>";
for (i = 1; i <= 3; i++){
  for (j = 10; j <= 1000; j = j * 10){
    if(j == 100)
      break; 
    txt = txt + (i*j) + "<br>";
  }
}

The output (value of txt) after running above script will be:

# Nested loop with break statement
10
20
30