mirror of
https://github.com/facebook/react.git
synced 2026-02-26 04:04:59 +00:00
7 lines
94 B
JavaScript
7 lines
94 B
JavaScript
function foo() {
|
|
const a = [[1]];
|
|
const first = a.at(0);
|
|
first.set(0, 2);
|
|
return a;
|
|
}
|