Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save JimOfLeisure/14ffc9d51a50f503bdeddc322b0b3de3 to your computer and use it in GitHub Desktop.
Save JimOfLeisure/14ffc9d51a50f503bdeddc322b0b3de3 to your computer and use it in GitHub Desktop.
function sentencify(words) {
const str = words.join(' ');
return str[0].toUpperCase() + str.slice(1) + '.';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment