random-splice
Random Splice
Get random element from array when looping
Visitor stats
Code stats
Idea
When looping over an array in JavaScript, you sometimes want to get a random item.
One solution is to first shuffle the array and then loop over it.
Another one is to get random element while looping.
Use case
Lets say that you want to render a word cloud.
Lets say that you do not want to keep the same order each time.
This is where you can use the randomSplice
function.
Installation
yarn add random-splice
or
npm i random-splice
Usage
import { randomSplice } from 'random-splice';
const arr = ['Your', 'Awesome', 'Array'];
while (arr.length) {
console.log(randomSplice(arr));
}
Notes
- This function modifies the original array. This is where its magic comes from
- This function accepts only arrays
- This function can be used in an ES6 environment
LICENSE
MIT
Connect with me: