Skip to content

Instantly share code, notes, and snippets.

@dandean
Created February 16, 2010 21:44
Show Gist options
  • Save dandean/305967 to your computer and use it in GitHub Desktop.
Save dandean/305967 to your computer and use it in GitHub Desktop.
function laugh()
{
return
{
haha: "ha!"
};
}
laugh();
// returns undefined
function laugh() {
return { haha: "ha!" };
}
laugh();
// returns Object: { haha: "ha!" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment