mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
7 lines
74 B
JavaScript
7 lines
74 B
JavaScript
function foo() {
|
|
const x = [];
|
|
const y = {};
|
|
y.x = x;
|
|
return y;
|
|
}
|