Returns one or more random entries from the collection.
Last updated 3 years ago
Was this helpful?
Parameter
Default
Description
amount
1
(optional)
Number of entries to return
Returns
| <>
A single random entry, if the provided parameter is equal to 1, or multiple random entries
// Note: Users is a collection. Users.get(); // [{ name: 'John' }, { name: 'Michael' }, { name: 'Peter' }] Users.random(); // { name: 'Michael' } Users.random(2); // [{ name: 'John' }, { name: 'Peter' }]