Skip to content

Instantly share code, notes, and snippets.

@coliveravenegas
Created April 5, 2020 23:08
Show Gist options
  • Save coliveravenegas/e6174570cd1b0c8f5b125ffba3c2bf66 to your computer and use it in GitHub Desktop.
Save coliveravenegas/e6174570cd1b0c8f5b125ffba3c2bf66 to your computer and use it in GitHub Desktop.
// BAD
const newFruits = fruits.map( x => {
return doSomething(x);
})
// GOOD
const newFruits = fruits.map( fruit => {
return doSomething(fruit);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment