Skip to content

Instantly share code, notes, and snippets.

@adedayojs
Created January 15, 2020 10:22
Show Gist options
  • Save adedayojs/1907539f7fcbe33dfab406d66151b62e to your computer and use it in GitHub Desktop.
Save adedayojs/1907539f7fcbe33dfab406d66151b62e to your computer and use it in GitHub Desktop.
function titleCase(str){
str = str.toLowerCase().split(' ');
let final = [ ];
for(let word of str){
final.push(word.charAt(0).toUpperCase()+ word.slice(1));
}
return final.join(' ')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment