Skip to content

Instantly share code, notes, and snippets.

@brunoopinheiro
Created December 28, 2023 20:54
Show Gist options
  • Save brunoopinheiro/1f8b62c72dd6d180d29b492897e3ec89 to your computer and use it in GitHub Desktop.
Save brunoopinheiro/1f8b62c72dd6d180d29b492897e3ec89 to your computer and use it in GitHub Desktop.
Capitalize Function
function capitalize(inputString) {
const words = inputString.split(" ");
const capitalizedWords = words.map(word => word.charAt(0).toUpperCase() + word.slice(1).toLowerCase());
const reduced = capitalizedWords.reduce((acc, curr) => `${acc} ${curr}`, "");
return reduced.slice(1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment