mirror of
https://github.com/facebook/react.git
synced 2026-02-26 05:25:05 +00:00
11 lines
112 B
JavaScript
11 lines
112 B
JavaScript
function foo(a, b, c, d) {
|
|
while (a) {
|
|
if (b) {
|
|
continue;
|
|
}
|
|
c();
|
|
continue;
|
|
}
|
|
d();
|
|
}
|