mirror of
https://github.com/facebook/react.git
synced 2026-02-26 18:58:05 +00:00
14 lines
151 B
JavaScript
14 lines
151 B
JavaScript
function foo(a, b, c) {
|
|
let x;
|
|
if (a) {
|
|
x = 2 - 1;
|
|
} else {
|
|
x = 0 + 1;
|
|
}
|
|
if (x === 1) {
|
|
return b;
|
|
} else {
|
|
return c;
|
|
}
|
|
}
|