Lodash - shuffle method



Syntax

_.shuffle(collection)

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 ]
lodash_collection.htm
Advertisements