DEV Community

Discussion on: What is {x:1} and why does it return 1 🤷‍♂️

Collapse
 
aminmansuri profile image
hidden_dude

I didn't realize Javascript had labels.

How are labels used in JavaScript?

Is there somthing like:

LABEL:
while (...) { 
   ...
   break LABEL;
}
Enter fullscreen mode Exit fullscreen mode

Like in Java?