BLOCK

BREAK᠁ Empty stat… \n
ecma5… my marks…[^2]

://.+.mozilla.org/ja/docs/Web/JavaScript/Reference/Statements/break#examples

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.


let sector;

{
  // These variables are scoped to this block and are NOT
  // accessible AFTER the “}”

  var angle = Math.PI / 3;
  var radius = 10;
  sector = {
    radius,
    angle,
    area: (angle / 2) * radius ** 2,
    perimeter: 2 * radius + angle * radius,
  };
}