Guest User

Untitled

a guest
Jan 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. function titleCase(str) {
  2. //split sentence into array
  3. //find first letter of each string
  4. //change letter to caps
  5. //change array back into string
  6. var arr = str.split(' ');
  7. var newArr = []
  8. arr.map(function(item) {
  9. //item.replace(/^./, item[0].toUpperCase);
  10. newArr.push(item.toLowerCase().replace(/^./, item[0].toUpperCase()));
  11. });
  12.  
  13. return newArr.join(' ');
  14. }
  15.  
  16. titleCase("I'm a liTtle tea pot");
Add Comment
Please, Sign In to add comment