mirror of
https://github.com/facebook/react.git
synced 2026-02-26 07:55:55 +00:00
11 lines
126 B
JavaScript
11 lines
126 B
JavaScript
function foo(a, b, c) {
|
|
label: if (a) {
|
|
while (b) {
|
|
if (c) {
|
|
break label;
|
|
}
|
|
}
|
|
}
|
|
return c;
|
|
}
|