Untitled

 avatar
unknown
plain_text
4 years ago
152 B
6
Indexable
function foo1()
{
  return {
      bar: "hello"
  };
}

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