Lodash _.zip() 方法
_.zip()方法用于创建分组元素的数组,其中第一个包含给定数组的第一个元素,第二个包含给定数组的第二个元素,依此类推。
句法:
_.zip([arrays])
参数:此方法接受如上所述和如下所述的单个参数:
- [arrays]:此参数保存要处理的数组。
返回值:此方法返回重新组合元素的新数组。
示例 1:这里使用 const _ = require('lodash') 将 lodash 库导入文件。
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.zip() method
let gfg = _.zip(['a', 'b', 'c'],
[1, 2, 3],
[true, false, true]);
// Printing the output
console.log(gfg)
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.zip()
// method
let gfg = _.zip(['Amit', 'Akash', 'Avijit'],
[1, 2, 3],
['pass', 'pass', 'fail']);
// Printing the output
console.log(gfg)
输出:
a,1,true,b,2,false,c,3,true
示例 2:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.zip()
// method
let gfg = _.zip(['Amit', 'Akash', 'Avijit'],
[1, 2, 3],
['pass', 'pass', 'fail']);
// Printing the output
console.log(gfg)
输出:
Amit,1,pass,Akash,2,pass,Avijit,3,fail