Untitled

Anonymous
plain_text
05/20/2021 9:46 AM
204 B
18
Indexable
function foo1()
{
  return {
      bar: "hello"
  };
}

function foo2()
{
  return
  {
      bar: "hello"
  };
}
console.log(foo1())
console.log(foo2())
Editor is loading...