Pacote
    Preparing search index...

    Function sample

    • Picks a random element from an array, or undefined if the provided array is empty.

      Type Parameters

      • T

      Parameters

      • array: readonly T[]

        The array to sample.

      Returns undefined | T

      Random element from the provided array, or undefined if the array is empty.

      import { sample } from '@pacote/array'

      sample([1, 2, 3]) // => 2
      sample([1, 2, 3]) // => 1