Skip to content

Instantly share code, notes, and snippets.

@davidcsejtei
Created October 19, 2020 10:09
Show Gist options
  • Select an option

  • Save davidcsejtei/f8e7e85abbb36d9e3ce0719054f57f74 to your computer and use it in GitHub Desktop.

Select an option

Save davidcsejtei/f8e7e85abbb36d9e3ce0719054f57f74 to your computer and use it in GitHub Desktop.
Coding styles - functions
const validateUser = (user) ⇒ {
return user.name === undefined;
}
// OR
const validateUser = (user) ⇒ user.name === undefined;
// OR
function validateUser(user) {
return user.name === undefined;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment