break statement in javascript

 What is the Break Statement JavaScript.




break statement in javascript



The break statement ends a loop or a switch. It emerges from the switch block in a switch. This puts an end to the switch's internal code execution. When a loop is encountered, it exits the loop and resumes running the code.

Break Statement syntax :-






Syntax :-

break;

OR

break label;

FlowChart :-

how to add break statement in javascript








 break statement in javascript example:-

Program :-

print the value of if  use break statement


for(let i=1;i<=7;i++)
    {
      if(i==6)
        {
            break;
        }
        console.log(i);
    }

Output :-

print the value of i use break statement

print the value of z  while loop use break statement

Program :-


let z=0;
while(z<15)
{
    if(z===12)

    {
        break;
          }
          console.log(z);
          z++
         }
          console.log("loop terminated.");


output:-
how to add break statement in javascript

print the value of day  use  switch case usebreak statement

Program:-


let day =5;
switch(day)
{
    case 1:
        console.log('Sunday');
        break;
        case 2:
            console.log('Monday');
            break;
            case 3:
        console.log('Tuesday');
        break;
        case 4:
            console.log('Wednesday');
            break;
            case 5 :
        console.log('Thursday');
        break;
        case 6:
            console.log('Friday');
            break;

            case 7:
            console.log('Saturday');
            break;
            default:
                console.log('invalid day')

}

Output:-

how to break statement in javascript


FAQs 

  •  how to break line in javascript syntax?
  • what is the break statement ?

      In a switch statement, the break statement is often used to end the processing of a certain instance.         An error occurs if there isn't an enclosed switch or iterative statement.
 

  •  what is break statemetn used?

     In a switch statement, the break statement is often used to end the processing of a certain instance.           An error occurs if there isn't an enclosed switch or iterative statement.

Related Post :-

change password form

php program to print heart star pattern

php arithmetic operators

Comments

Popular posts from this blog

What Is CSS Text Color in 2026

CSS Padding Property Explained

CSS Outline Color Property in 2026