7 Useful JS One Liners To Write Clean Code
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...
blogs.manishrana.in2 min read