The **`break` statement** terminates the current loop, `switch`, or label statement and transfers program control to the statement following the terminated statement.
```js
for (let current = 20; ; current = current + 1) {
if (current % 7 == 0) {
console.log(current);
break;
}
}
// → 21
```