Open In App

Lodash_.shuffle() Method

Lodash _.shuffle() method shuffles of collection by returning the new array.

Syntax: 

_.shuffle(collection);

Parameters:

Return Value:

This method returns the new array after shuffling.



Example 1: In this example, we are getting the shuffled value of the given array in the console.




// Requiring the lodash library
const _ = require("lodash");
 
// Original array and use _.shuffle() method
let gfg = _.shuffle([1, 2, 3, 4]);
 
// Printing the output
console.log(gfg);

Output :



[4, 1, 3, 2]

Example 2: In this example, we are getting the shuffled value of the given array in the console.




// Requiring the lodash library
const _ = require("lodash");
 
// Original array and use _.shuffle() method
let gfg = _.shuffle(["g", "e", "e", "k", "s", "f", "o",
    "r", "g", "e", "e", "k", "s"]);
 
// Printing the output
console.log(gfg);

Output :

["o", "e", "k", "s", "e", "e", "s",
 "g", "r", "e", "g", "f", "k"]

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

Article Tags :