Syntax Of Lodash shuffle method
_.shuffle(collection)
The Lodash shuffle method creates an array of shuffled values, using a version of the Fisher-Yates shuffle.
Arguments
- collection (Array|Object) − The collection to shuffle.
Output
- (Array) − Returns the new shuffled array.
Example
var _ = require('lodash'); var list = [1, 2, 3, 4, 5] var result = _.shuffle(list); console.log(result);
Save the above program in tester.js. Run the following command to execute this program.
Command
\>node tester.js
Output
[ 4, 5, 1, 3, 2 ]
Next Topic – Click Here
Pingback: Lodash - sample Size method - Adglob Infosystem Pvt Ltd