Skip to content

sample

数组 中返回一个随机元素。如果数组为空,则返回 undefined

使用

ts
import { sample } from 'rattail'

sample([1, 2, 3, 4, 5]) // return 一个随机元素,例如 3
sample([]) // return undefined

参数

参数类型默认值
arrT[]

返回值

类型
T | undefined