JavaScript - 将带有 null 值的数组转换为字符串


我们有一个包含一些字符串值以及一些空值数组。

我们需要编写一个 JavaScript 函数,该函数接受此数组并返回一个通过连接数组值并省略空值而构建的字符串。

以下是我们具有某些空和未定义值的数组 −

const arr = ["Here", "is", null, "an", undefined, "example", 0, "", "of", "a", null, "sentence"];

让我们编写此函数的代码 −

示例

const arr = ["Here", "is", null, "an", undefined, "example", 0, "", "of",
"a", null, "sentence"];
const joinArray = arr => {
   const sentence = arr.reduce((acc, val) => {
      return acc + (val || "");
   }, "");
   return sentence;
};
console.log(joinArray(arr));

输出

以下是在控制台中的输出 −

Hereisanexampleofasentence

更新于: 14-Sep-2020

394 次浏览

开启您的职业生涯

完成课程,获得认证

开始学习
广告