美文网首页
js设置首字母大写算法挑战

js设置首字母大写算法挑战

作者: YOLO_2a2d | 来源:发表于2019-03-16 16:27 被阅读0次

    设置首字母大写算法挑战

    返回一个字符串,确保字符串的每个单词首字母都大写,其余部分小写。

    像'the'和'of'这样的连接符同理。

    当你完成不了挑战的时候,可以点击'求助'。

    你可能需要使用到以下链接:

    String.prototype.split()

    function titleCase(str) {

        var newStr=str.toLowerCase().split(" ");

        //console.log(newStr);

        for(var i=0;i<newStr.length;i++){

        newStr[i]=newStr[i][0].toUpperCase()+newStr[i].substring(1,newStr[i].length);

          //console.log(newWord);

        }

        console.log(newStr);

    return newStr.join(" ");

    }

    titleCase("I'm a little tea pot");

    相关文章

      网友评论

          本文标题:js设置首字母大写算法挑战

          本文链接:https://www.haomeiwen.com/subject/veysmqtx.html