mirror of
https://github.com/facebook/react.git
synced 2026-02-26 06:55:16 +00:00
9 lines
142 B
JavaScript
9 lines
142 B
JavaScript
function foo() {
|
|
const x = { x: 0 };
|
|
const y = { z: 0 };
|
|
const z = { z: 0 };
|
|
x.x += y.y *= 1;
|
|
z.z += y.y *= x.x &= 3;
|
|
return z;
|
|
}
|