mirror of
https://github.com/facebook/react.git
synced 2026-02-26 07:55:55 +00:00
14 lines
137 B
JavaScript
14 lines
137 B
JavaScript
function foo() {
|
|
let x = 1;
|
|
let y = 2;
|
|
|
|
if (x > 1) {
|
|
x = 2;
|
|
} else {
|
|
y = 3;
|
|
}
|
|
|
|
let t = { x: x, y: y };
|
|
return t;
|
|
}
|