Picks a mumber of random elements from an array determined by the sample size.
The array to sample.
Array of random elements from the provided array.
import { sampleN } from '@pacote/array'sampleN([1, 2, 3], 2) // => [2, 1]sampleN([1, 2, 3], 2) // => [3, 3] Copy
import { sampleN } from '@pacote/array'sampleN([1, 2, 3], 2) // => [2, 1]sampleN([1, 2, 3], 2) // => [3, 3]
Picks a mumber of random elements from an array determined by the sample size.