mirror of
https://github.com/facebook/react.git
synced 2026-02-27 03:07:57 +00:00
12 lines
106 B
JavaScript
12 lines
106 B
JavaScript
function foo(a, b) {
|
|
let x;
|
|
if (a) {
|
|
x = 1;
|
|
} else {
|
|
x = 2;
|
|
}
|
|
|
|
let y = x;
|
|
return y;
|
|
}
|