如何在JavaScript中将两个数组组合成对象数组?

假设以下是我们的两个数组-

var firstArray = ['John', 'David', 'Bob'];

var secondArray = ['Mike','Sam','Carol'];

要将两个数组组合成对象数组,请使用map()JavaScript

示例

var firstArray = ['John', 'David', 'Bob'];

var secondArray = ['Mike','Sam','Carol'];

var arrayOfObject = firstArray.map(function (value, index){

   return [value, secondArray[index]]

});

console.log("The First Array=");

console.log(firstArray);

console.log("The Second Array=");

console.log(secondArray);

console.log("The mix Of array object=");

console.log(arrayOfObject);

要运行上述程序,您需要使用以下命令-

node fileName.js.

在这里,我的文件名为demo190.js。

输出结果

这将产生以下输出-

PS C:\Users\Amit\javascript-code> node demo190.js

The First Array=

[ 'John', 'David', 'Bob' ]

The Second Array=

[ 'Mike', 'Sam', 'Carol' ]

The mix Of array object=

[ [ 'John', 'Mike' ], [ 'David', 'Sam' ], [ 'Bob', 'Carol' ] ]

以上是 如何在JavaScript中将两个数组组合成对象数组? 的全部内容, 来源链接: utcz.com/z/335034.html

回到顶部