将嵌套数组转换为字符串-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
猜你喜欢