mirror of
https://github.com/facebook/react.git
synced 2026-02-26 04:04:59 +00:00
9 lines
143 B
JavaScript
9 lines
143 B
JavaScript
function foo(a, b, c) {
|
|
const x = [a];
|
|
const y = [null, b];
|
|
const z = [[], [], [c]];
|
|
x[0] = y[1];
|
|
z[0][0] = x[0];
|
|
return [x, z];
|
|
}
|