mirror of
https://github.com/facebook/react.git
synced 2026-02-26 18:58:05 +00:00
11 lines
156 B
JavaScript
11 lines
156 B
JavaScript
function foo(a, b, c) {
|
|
let x = a;
|
|
if (b) {
|
|
if (c) {
|
|
x = c;
|
|
}
|
|
// TODO: move the return to the end of the function
|
|
return x;
|
|
}
|
|
}
|