mirror of
https://github.com/facebook/react.git
synced 2026-02-27 03:07:57 +00:00
11 lines
194 B
JavaScript
11 lines
194 B
JavaScript
function f(a, b) {
|
|
let x = []; // <- x starts being mutable here.
|
|
if (a.length === 1) {
|
|
if (b) {
|
|
x.push(b); // <- x stops being mutable here.
|
|
}
|
|
}
|
|
|
|
return <div>{x}</div>;
|
|
}
|