Skip to content

choices

choices<T>(items, k): T[]

Defined in: src/secure.ts:230

k elements with replacement.

T

Collection<T>

number

T[]

choices(["a", "b"], 5); // [ "b", "b", "a", "b", "a" ]