View on GitHub

random-splice

Get random element from array

Travis CI Github Build Codacy Badge Codebeat Badge CodeFactor Badge DeepScan grade Analytics

Random Splice

Get random element from array when looping

Visitor stats

GitHub stars GitHub forks GitHub watchers GitHub followers

Code stats

GitHub code size in bytes GitHub repo size GitHub language count GitHub top language GitHub last commit

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

  1. This function modifies the original array. This is where its magic comes from
  2. This function accepts only arrays
  3. This function can be used in an ES6 environment

LICENSE

MIT


Connect with me:


                     

Support and sponsor my work: