用 JavaScript 转换字符串中奇偶索引字符的大小写?


我们需要编写一个函数,它读取一个字符串,将字符串中的奇数索引字符转换为大写,将偶数索引字符转换为小写,并返回一个新字符串。

下面是执行此操作的完整代码:

示例

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.

更新时间:2020 年 8 月 19 日

2 千次以上浏览

开始你的 职业生涯

完成课程,获得认证

开始
广告