1 function titleCase(str) { 2 // 请把你的代码写在这里 3 var temp1 = str.toLowerCase().split(" "); 4 for (var i =0;i<temp1.length;i++){ 5 temp1[i] = temp1[i].split(‘‘); 6 temp1[i][0]= temp1[i][0].toUpperCase(); 7 temp1[i] = temp1[i].join(‘‘); 8 } 9 str = temp1.join(‘ ‘); 10 return str; 11 } 12 13 titleCase("I‘m a little tea pot");
Title Case a Sentence-freecodecamp算法题目
原文:https://www.cnblogs.com/ahswch/p/9292886.html