在JavaScript中比较和填充数组

我们需要编写一个比较两个数组的函数,并创建一个第三个数组,该数组用第二个数组的所有元素填充该数组,并为第一个数组中存在的所有元素填充空值,而在第二个数组中丢失。

例如:

如果两个数组是-

const arr1 = ['f', 'g', 'h'];

const arr2 = ['f', 'h'];

那么输出应该是-

const output = ['f', null, 'h'];

因此,让我们为该函数编写代码-

示例

为此的代码将是-

const arr1 = ['f', 'g', 'h'];

const arr2 = ['f', 'h'];

const compareAndFill = (arr1, arr2) => {

   let offset = 0;

   const res = arr1.map((el, i) => {

      if (el === arr2[offset + i]) {

         return el;

      };

      offset--;

      return null;

   });

   return res;

};

console.log(compareAndFill(arr1, arr2));

输出结果

控制台中的输出将为-

[ 'f', null, 'h' ]

以上是 在JavaScript中比较和填充数组 的全部内容, 来源链接: utcz.com/z/331136.html

回到顶部