choices
choices<
T>(items,k):T[]
Defined in: src/secure.ts:230
k elements with replacement.
Type Parameters
Section titled “Type Parameters”T
Parameters
Section titled “Parameters”Collection<T>
number
Returns
Section titled “Returns”T[]
Example
Section titled “Example”choices(["a", "b"], 5); // [ "b", "b", "a", "b", "a" ]