Pacote
    Preparing search index...

    Function sampleN

    • Picks a mumber of random elements from an array determined by the sample size.

      Type Parameters

      • T

      Parameters

      • array: readonly T[]

        The array to sample.

      • sampleSize: number

      Returns T[]

      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]