mirror of
https://github.com/facebook/react.git
synced 2026-02-26 18:35:06 +00:00
8 lines
109 B
JavaScript
8 lines
109 B
JavaScript
function foo(a, b, c) {
|
|
const x = a.x;
|
|
const y = { ...b.c.d };
|
|
y.z = c.d.e;
|
|
foo(a.b.c);
|
|
[a.b.c];
|
|
}
|