@extra-array/shuffle-update.min

Rearranges values in arbitrary order. > This is part of package [extra-array].

Usage no npm install needed!

<script type="module">
  import extraArrayShuffleUpdateMin from 'https://cdn.skypack.dev/@extra-array/shuffle-update.min';
</script>

README

Rearranges values in arbitrary order.

This is part of package extra-array.

This is browserified, minified version of @extra-array/shuffle-update.
It is exported as global variable array_shuffle.
CDN: unpkg, jsDelivr.

array.shuffle$(x, [n]);
// x: an array (updated)
// n: random seed 0->1
// --> x
const array = require('extra-array');

var x = [1, 2, 3, 4, 5];
array.shuffle(x);
// [ 1, 5, 4, 3, 2 ]

x;
// [ 1, 5, 4, 3, 2 ]

var x = [1, 2, 3, 4, 5];
array.shuffle(x, 0.3);
// [ 4, 5, 2, 3, 1 ]

var x = [1, 2, 3, 4, 5];
array.shuffle(x, 0.3);
// [ 4, 5, 2, 3, 1 ]

references