MDN recommends NOT to use labels in Javascript, and instead use exceptions or functions. But turns out labels are the fastest, closely followed by named functions.
Test case: Run two nested loops. The inner loop needs to continue
the
outer loop upon some condition.
Tests:
- Using named loops with labels.