Advertisement
Guest User

Untitled

a guest
Dec 8th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. function toFirstUpper(word){   
  2. return word.substring(0,1).toUpperCase()+word.substring(1).toLowerCase();
  3. }
  4. function titleCase(str) { 
  5. var wordArr=str.split(" "); 
  6. for (var i=0; i<wordArr.length; i++){   
  7. wordArr[i]=toFirstUpper(wordArr[i]); 
  8. str=wordArr.join(" "); 
  9. return str;
  10. }
  11. titleCase("I'm a little tea pot");
  12. titleCase("sHoRt AnD sToUt");
  13. titleCase("HERE IS MY HANDLE HERE IS MY SPOUT");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement