Skip to content

Instantly share code, notes, and snippets.

@andycarrell
Last active September 3, 2017 23:07
Show Gist options
  • Save andycarrell/6af1c9012b22d5f942169e2b114f981f to your computer and use it in GitHub Desktop.
Save andycarrell/6af1c9012b22d5f942169e2b114f981f to your computer and use it in GitHub Desktop.
const spicify = ([first, ...rest]) => [...rest].reduce((acc, i) => `${acc} ${i.toUpperCase()}`, first.toUpperCase());
spicify('spicey');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment