Files
react/compiler/crates/react_hermes_parser/tests/fixtures/array-property-call.js
2024-04-02 16:49:31 -07:00

8 lines
145 B
JavaScript

function Component(props) {
const a = [props.a, props.b, "hello"];
const x = a.push(42);
const y = a.at(props.c);
return { a, x, y };
}