shuffle_.shuffle(list)
Returns a shuffled copy of the list, using a version of the Fisher-Yates shuffle.
1 2 | _.shuffle([1, 2, 3, 4, 5, 6]); => [4, 1, 6, 3, 5, 2] |
shuffle_.shuffle(list)
Returns a shuffled copy of the list, using a version of the Fisher-Yates shuffle.
1 2 | _.shuffle([1, 2, 3, 4, 5, 6]); => [4, 1, 6, 3, 5, 2] |
Designed by : w10schools
service@w10schools.com
Please login to continue.