7 Killer One-Liners in JavaScript
Shuffle Array
While using algorithms that require some degree of randomization, you will often find shuffling arrays quite a necessary skill. The following snippet shuffles an array in place with O(n log n) complexity.
const shuffleArray = (arr) => a...
furiousdev.hashnode.dev2 min read