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

11 lines
147 B
JavaScript

function Component(props) {
let x = 0;
for (let i = 0; i < props.count; ) {
x += i;
if (x > 10) {
break;
}
}
return x;
}