Skip to content

Instantly share code, notes, and snippets.

@pedro757
Last active August 8, 2022 15:04
Show Gist options
  • Save pedro757/60939f7e1791bd91ab7caf40080d9c49 to your computer and use it in GitHub Desktop.
Save pedro757/60939f7e1791bd91ab7caf40080d9c49 to your computer and use it in GitHub Desktop.
javascript - prettify
function doStuff(text) {
return text
.toLocaleLowerCase()
.split(" ")
.reduce((prev, curr) => {
if (curr.length > 5) {
if (prev === "") return curr;
return curr + ", " + prev;
}
return prev;
}, "")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment