Skip to content

Instantly share code, notes, and snippets.

@prmishra
Last active May 26, 2019 14:42
Show Gist options
  • Save prmishra/02d1046ef26220fdab6aaa703b8dd058 to your computer and use it in GitHub Desktop.
Save prmishra/02d1046ef26220fdab6aaa703b8dd058 to your computer and use it in GitHub Desktop.
function foo()
{
return
{
bar: "hello"
};
}
console.log(foo())
// node script.js
@ashvini-maurya
Copy link

function foo() {
  return {
    bar: "hello"
  };
}

console.log(foo())

@Piyush-85
Copy link

function foo() {
return {
bar: "hello"
};
}

console.log(foo())

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment