如何连接 JavaScript 的字符串数组
我们需要编写一个 JavaScript 函数,该函数接受一个字符串数组。此函数应连接数组中的所有字符串,将所有空格替换为“-”,并返回由此形成的字符串。
例如:如果数组是 -
const arr = ["QA testing promotion ", " Twitter ", "Facebook ", "Test"];
输出应为 -
const output = "QA-testing-promotion-Twitter-Facebook-Test";
示例
代码如下 -
const arr = ["QA testing promotion ", " Twitter ", "Facebook ", "Test"]; const joinArr = arr => { const arrStr = arr.join(''); let res = ''; for(let i = 0; i < arrStr.length; i++){ if(arrStr[i] === ' '){ if(arrStr[i-1] && arrStr[i-1] !== ' '){ res += '-'; }; continue; }else{ res += arrStr[i]; }; }; return res; }; console.log(joinArr(arr));
输出
这将在控制台上产生以下输出 -
QA-testing-promotion-Twitter-Facebook-Test
广告