mirror of
https://github.com/facebook/react.git
synced 2026-02-26 04:14:59 +00:00
12 lines
129 B
JavaScript
12 lines
129 B
JavaScript
function foo(a, b, c, d, e) {
|
|
let x = null;
|
|
if (a) {
|
|
x = b;
|
|
} else {
|
|
if (c) {
|
|
x = d;
|
|
}
|
|
}
|
|
return x;
|
|
}
|