Skip to content

Instantly share code, notes, and snippets.

@Drex72
Last active August 4, 2022 21:28
Show Gist options
  • Save Drex72/bb3cfaf3023e1a068b23b6741d6cc877 to your computer and use it in GitHub Desktop.
Save Drex72/bb3cfaf3023e1a068b23b6741d6cc877 to your computer and use it in GitHub Desktop.
javascript - prettify
/*
Make the function more readable and maintainable
*/
function doStuff(text) {
const words = text.toLocaleLowerCase().split(' ').reverse()
return words
.map((word) => word.trim())
.filter((word) => word.length > 5)
.join(', ')
.slice(0, -2)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment