break javascript code example

Example 1: javascript line break

//in JavaScript, you can declare a line break (or new line)
//with the \n character.
var linebreak = '\n';

Example 2: javascript break out of loop

//break out of for loop
for (i = 0; i < 10; i++) {
    if (i === 3) { break; }
}

Example 3: js break out of a function

By using 'return;':

function myfunction(){
   if(a == 'stop') 
      return;  //returns Void, ending function
}

Does not work when using a Conditional operator:

let result =  1 == 2   ?  "YES" : return;  //<--- throws error

Example 4: break in if statement js

breakme: if (condition) {
    // Do stuff

    if (condition2){
        // do stuff
    } else {
       break breakme;
    }

    // Do more stuff
}

Example 5: javascript exeit from loop

To stop a for loop early in JavaScript, you use break:

Tags:

Java Example