mirror of
https://github.com/facebook/react.git
synced 2026-02-26 04:04:59 +00:00
10 lines
151 B
JavaScript
10 lines
151 B
JavaScript
function sequence(props) {
|
|
let x = (null, Math.max(1, 2), foo());
|
|
while ((foo(), true)) {
|
|
x = (foo(), 2);
|
|
}
|
|
return x;
|
|
}
|
|
|
|
function foo() {}
|