object-properties.js8 lines
mainRaw
function foo(a, b, c) {
  const x = a.x;
  const y = {...b.c.d};
  y.z = c.d.e;
  foo(a.b.c);
  [a.b.c];
}
Loading syntax highlighting…