mirror of
https://github.com/facebook/react.git
synced 2026-02-26 07:55:55 +00:00
9 lines
102 B
JavaScript
9 lines
102 B
JavaScript
function foo(a, b, c) {
|
|
let x = [];
|
|
let y = [];
|
|
while (c) {
|
|
y.push(b);
|
|
x.push(a);
|
|
}
|
|
}
|