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
Pingback: Lodash - sample method - Adglob Infosystem Pvt Ltd
Wow, great blog post.Really thank you! Much obliged.