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

9 lines
94 B
JavaScript

function foo() {
let x = 100;
let y = 0;
while (x < 10) {
y += 1;
}
return y;
}