JSTQL-JS-Transform/output_testing/602array-property-call.js

10 lines
167 B
JavaScript
Raw Normal View History

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