Picks a random element from an array, or undefined if the provided array is empty.
undefined
The array to sample.
Random element from the provided array, or undefined if the array is empty.
import { sample } from '@pacote/array'sample([1, 2, 3]) // => 2sample([1, 2, 3]) // => 1 Copy
import { sample } from '@pacote/array'sample([1, 2, 3]) // => 2sample([1, 2, 3]) // => 1
Picks a random element from an array, or
undefined
if the provided array is empty.