_.sample(collection)
Gets a random element from collection
.
Since
2.0.0
Arguments
-
collection
(Array|Object): The collection to sample.
Returns
(*): Returns the random element.
Example
_.sample([1, 2, 3, 4]); // => 2
_.sample(collection)
Gets a random element from collection
.
2.0.0
collection
(Array|Object): The collection to sample.(*): Returns the random element.
_.sample([1, 2, 3, 4]); // => 2
Please login to continue.