Untitled
unknown
plain_text
4 years ago
152 B
9
Indexable
function foo1()
{
return {
bar: "hello"
};
}
function foo2()
{
return
{
bar: "hello"
};
}
console.log(foo1())
console.log(foo2())Editor is loading...
function foo1()
{
return {
bar: "hello"
};
}
function foo2()
{
return
{
bar: "hello"
};
}
console.log(foo1())
console.log(foo2())