Category
Array to shuffle
Optional
mutate: trueOptional, true
if specified
Category
A non-mutating uniformly random array shuffle.
Time complexity: O(n)
Space complexity: O(n)
The shuffled array
Array
sample if you only want to select one element at random
A mutating (in-place) uniformly random array shuffle.
Time complexity: O(n)
Space complexity: O(1)