mirror of
https://github.com/facebook/react.git
synced 2026-02-26 18:58:05 +00:00
10 lines
87 B
JavaScript
10 lines
87 B
JavaScript
function foo() {
|
|
let x = 1;
|
|
let y = 2;
|
|
if (y === 2) {
|
|
x = 3;
|
|
}
|
|
|
|
y = x;
|
|
}
|