将嵌套数组转换为字符串 - JavaScript
我们需要编写一个 JavaScript 函数,该函数接收一个包含文字的嵌套数组,并通过将其中存在的所有值连接到字符串,将其转换为字符串
const arr = [ 'hello', [ 'world', 'how', [ 'are', 'you', [ 'without', 'me' ] ] ] ];
示例
假设以下内容是我们的嵌套数组 −
const arr = [ 'hello', [ 'world', 'how', [ 'are', 'you', [ 'without', 'me' ] ] ] ]; const arrayToString = (arr) => { let str = ''; for(let i = 0; i < arr.length; i++){ if(Array.isArray(arr[i])){ str += arrayToString(arr[i]); }else{ str += arr[i]; }; }; return str; }; console.log(arrayToString(arr));
输出
以下是控制台中的输出 −
helloworldhowareyouwithoutme
广告