mirror of
https://github.com/facebook/react.git
synced 2026-02-26 18:58:05 +00:00
16 lines
174 B
JavaScript
16 lines
174 B
JavaScript
function foo(x, y, z) {
|
|
const items = [z];
|
|
items.push(x);
|
|
|
|
const items2 = [];
|
|
if (x) {
|
|
items2.push(y);
|
|
}
|
|
|
|
if (y) {
|
|
items.push(x);
|
|
}
|
|
|
|
return items2;
|
|
}
|