Lodash – sample Size method

Lodash - sample Size method

Syntax Of Lodash sample Size method

_.sampleSize(collection, [n=1])

Lodash sample Size method is getting n random elements at unique keys from the collection up to the size of the collection.

Arguments

  • collection (Array|Object) − The collection to sample.
  • [n=1] (number) − The number of elements to sample.

Output

  • (Array) − Returns the random elements.

Example

var _ = require('lodash');
var list = [1, 2, 3, 4, 5]

var result = _.sampleSize(list);
console.log(result);

result = _.sampleSize(list, 2);
console.log(result);

Save the above program in tester.js. Run the following command to execute this program.

Command

\>node tester.js

Output

[ 2 ]
[ 2, 4 ]

Next Topic – Click Here

This Post Has 2 Comments

Leave a Reply