mirror of
https://github.com/facebook/react.git
synced 2026-02-26 04:14:59 +00:00
9 lines
99 B
JavaScript
9 lines
99 B
JavaScript
function foo() {
|
|
const x = 42;
|
|
const f = () => {
|
|
console.log(x);
|
|
};
|
|
f();
|
|
return x;
|
|
}
|