mirror of
https://github.com/facebook/react.git
synced 2026-02-27 03:07:57 +00:00
9 lines
81 B
JavaScript
9 lines
81 B
JavaScript
function foo(a, b, c, d) {
|
|
if (a) {
|
|
return b;
|
|
} else {
|
|
c;
|
|
}
|
|
d;
|
|
}
|