猿问

这道题应该如何做?

用javascript来解决!!!求解!

https://img1.mukewang.com/5ba5f6f10001776405840433.jpg

慕村9548890
浏览 529回答 1
1回答

摇曳的蔷薇

function test(str){    return str.replace(/\b[\w\']+\b/g,function(match){        return match.toLowerCase().replace(/^./,function(match){            return match.toUpperCase();        });    });}[    "I'm a little tea pot",    "sHoRt AnD sToUt",    "HERE IS MY HANDLE HERE IS MY SPOUT"].forEach(function(str){    console.log(test(str))})
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答