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

7 lines
118 B
JavaScript

function Component(props) {
const x = { a: props.a, b: props.b };
const key = "b";
delete x[key];
return x;
}