在 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
广告