Skip to content

Instantly share code, notes, and snippets.

@lgvital
Created January 18, 2015 08:31
Show Gist options
  • Save lgvital/e5f15d51c103571b0792 to your computer and use it in GitHub Desktop.
Save lgvital/e5f15d51c103571b0792 to your computer and use it in GitHub Desktop.
// Will the following two functions return the same thing?
function foo1()
{
return {
bar: "hello"
};
}
function foo2()
{
return
{
bar: "hello"
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment