Skip to content

Instantly share code, notes, and snippets.

@coliveravenegas
Created April 5, 2020 23:05
Show Gist options
  • Save coliveravenegas/ee24ca92aa65d56ad1f597e0fa9dcd5e to your computer and use it in GitHub Desktop.
Save coliveravenegas/ee24ca92aa65d56ad1f597e0fa9dcd5e to your computer and use it in GitHub Desktop.
// BAD
userData(userId)
userDataFunc(userId)
totalOfItems(items)
// GOOD - Solo agregando el verbo ya nos damos cuenta que es mas legible
getUser(userId);
calculateTotal(items);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment