Input

function Component(props) {
  // unused!
  const obj = makeObject();
  const _ = obj.a?.b?.(props.c);
  return null;
}

Code

function Component(props) {
  const obj = makeObject();
  obj.a?.b?.(props.c);
  return null;
}