Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Lodash _.unzip() Method

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The _.unzip method is similar to _.zip (i.e.; it creates an array of grouped elements) except that it accepts an array of grouped elements and also creates an array regrouping the elements to their pre-zip configuration.

Syntax:

_.unzip(array)

Parameters: This method accepts a single parameters as mentioned above and described below:

  • array (Array): This parameter holds the array of grouped elements to process.

Return Value: This method is used to returns the new array of regrouped elements.

Example 1: Here, const _ = require(‘lodash’) is used to import the lodash library in the file.

javascript




// Requiring the lodash library 
const _ = require("lodash"); 
      
// Original array 
var zipped = _.zip(['a', 'b'], [1, 2], [true
  
false]);    
  
// Use of _.zip() 
// method
let gfg = _.zip(zipped);
      
// Printing the output 
console.log(gfg);

Output:

[ [['a', 1, true], ['b', 2, false]] ]

Example 2:

javascript




// Requiring the lodash library 
const _ = require("lodash"); 
      
// Original array 
var zipped = (['x', 'y'], [5, 6], [true, false]);    
  
// Use of _.zip() 
// method
let gfg = _.zip(zipped);
      
// Printing the output 
console.log(gfg);

Output:

[ [true, false] ]

Note: This code will not work in normal JavaScript because it requires the library lodash to be installed.

My Personal Notes arrow_drop_up
Last Updated : 28 Aug, 2020
Like Article
Save Article
Similar Reads
Related Tutorials