choices
choices<
T>(items,k):T[]
Defined in: src/global/collections.ts:80
k elements with replacement, so k may exceed the collection size.
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" ]