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

7 lines
148 B
JavaScript

function Component(props) {
const a = [props.a, props.b, "hello"];
const x = a.length;
const y = a.push;
return { a, x, y, z: a.concat };
}