Skip to content

Instantly share code, notes, and snippets.

@it-sumanp
Created April 21, 2018 21:53
Show Gist options
  • Save it-sumanp/aefc69180975034ee107f4f4b8b2e239 to your computer and use it in GitHub Desktop.
Save it-sumanp/aefc69180975034ee107f4f4b8b2e239 to your computer and use it in GitHub Desktop.
Test Gist
function foo() {
  return {
    foo:"fool"
  };
}

function bar() {
  return
  {
    bar:"baar"
  };
}
console.log(foo());//{foo:"fool"}
console.log(bar());//undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment