array-join.js7 lines
mainRaw
function Component(props) {
  const x = [{}, [], props.value];
  const y = x.join(() => 'this closure gets stringified, not called');
  foo(y);
  return [x, y];
}
Loading syntax highlighting…