#JavaScript: TIL that you can label your loops and give "break;" and "continue;" that name as a parameter to *choose* which loop you mean: continue <label>; Whaaaaaaat, i have *never ever* seen this! That is super useful for nested loops, so a loop inside another loop can break out of or skip an iteration of any outside loop. No need for conditions there anymore.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/label
@nora QUOI?! Warum hat mir das noch keine:r verraten?
Danke fürs Teilen!