mirror of
https://github.com/facebook/react.git
synced 2026-02-26 05:25:05 +00:00
7 lines
64 B
JavaScript
7 lines
64 B
JavaScript
function foo(a, b) {
|
|
while (a) {
|
|
break;
|
|
}
|
|
return b;
|
|
}
|