Skip to content

Instantly share code, notes, and snippets.

@glosik
Created March 27, 2017 17:22
Show Gist options
  • Save glosik/37c71b2a68320be1013f470373aef055 to your computer and use it in GitHub Desktop.
Save glosik/37c71b2a68320be1013f470373aef055 to your computer and use it in GitHub Desktop.
capitalize
hs.capitalizeSentence = function(string){
var words = string.split(' ');
for (i = 0; i < words.length; i++){
words[i] = words[i].charAt(0).toUpperCase()+ words[i].slice(1);
}
return words.join(' ');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment