mirror of
https://github.com/facebook/react.git
synced 2026-02-26 07:55:55 +00:00
8 lines
116 B
JavaScript
8 lines
116 B
JavaScript
function Component(props) {
|
|
const x = [props.x];
|
|
const index = 0;
|
|
x[index] *= 2;
|
|
x["0"] += 3;
|
|
return x;
|
|
}
|