BREAK
BREAK᠁ Empty stat… \n
 ecma5… my marks…[^2]
://.+.mozilla.org/ja/docs/Web/JavaScript/Reference/
Information for tab 1
Another line of information.Information for tab 2
Another line of information.Information for tab 3
Another line of information.Another line of information.
Information for tab 4
Another line of information.Information for tab 5
Another line of information.Information for tab 6
Another line of information.Information for tab 7
Another line of information.Another line of information.
(x) => {   let i = 0;
  while (i < 8) {     if (i === 3) {       break;     }     i += 1;   }
  return i * x; }
function testBreak(x) {
  let i = 0;
  while (i < 6) {
    if (i === 3) {
      break;
    }
    i += 1;
  }
  return i * x;
}
x => let i = 0;   while (i < 8) {if(i===3){break;}i+=1} return i * x;