Updated for transfer to org

This commit is contained in:
Angelos Chalaris
2018-09-22 10:58:26 +03:00
parent 20daf7635e
commit a2356fdbb3
21 changed files with 33 additions and 33 deletions

View File

@ -2,7 +2,7 @@
Randomizes the order of the values of an array, returning a new array.
Uses the [Fisher-Yates algorithm](https://github.com/chalarangelo/30-seconds-of-code#shuffle) to reorder the elements of the array.
Uses the [Fisher-Yates algorithm](https://github.com/30-seconds/30-seconds-of-code#shuffle) to reorder the elements of the array.
```js
const shuffle = ([...arr]) => {