将字符串中的奇数和偶数索引字符转换为JavaScript中的大写/小写?
我们需要编写一个函数,该函数读取一个字符串并将该字符串中的奇数索引字符转换为upperCase,将偶数索引转换为lowerCase并返回一个新字符串。
这样做的完整代码将是-
示例
const text = 'Hello world, it is so nice to be alive.'; const changeCase = (str) => { const newStr = str .split("") .map((word, index) => { if(index % 2 === 0){ return word.toLowerCase(); }else{ return word.toUpperCase(); } }) .join(""); return newStr; }; console.log(changeCase(text));
该代码将字符串转换为数组,映射每个单词,然后根据其索引将其转换为大写或小写。
最后,它将数组转换回字符串并返回它。控制台中的输出将为-
输出结果
hElLo wOrLd, It iS So nIcE To bE AlIvE.