在 JavaScript 中互换字符串的相邻单词


我们需要编写一个 JavaScript 函数,它接受一个字符串作为输入,并互相交换该字符串中相邻的单词,直到该字符串结束。

示例

代码如下 −

const str = "This is a sample string only";
const replaceWords = str => {
   return str.split(" ").reduce((acc, val, ind, arr) => {
      if(ind % 2 === 1){
         return acc;
      }
      acc += ((arr[ind+1] || "") + " " + val + " ");
      return acc;
   }, "");
};
console.log(replaceWords(str));

输出

控制台中的输出 −

is This sample a only string

更新日期:2020 年 10 月 14 日

404 次浏览

开始你的 职业生涯

完成课程获得认证

开始
广告