Skip to content

Instantly share code, notes, and snippets.

@keithn
Created July 21, 2020 10:36
Show Gist options
  • Save keithn/570216bcdf10142ac16bfe785c07c6b1 to your computer and use it in GitHub Desktop.
Save keithn/570216bcdf10142ac16bfe785c07c6b1 to your computer and use it in GitHub Desktop.
function titleCase(str) {
let titled = []
let upper = true;
for(let letter of str.toLowerCase()) {
titled.push( upper ? letter.toUpperCase() : letter )
upper = (letter === ' ')
}
return titled.join('')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment