Nodejs Array Shuffle shuffle()

Here you can find the source of shuffle()

Method Source Code

// Drilling data structures

Array.prototype.shuffle = function(){
  var counter = this.length, temp, index;

  // While there are elements in the array
  while (counter > 0) {
    // Pick a random index
    index = (Math.random() * counter--) | 0;

    // And swap the last element with it
    temp = this[counter];//from   w  ww .  j a va2s.  c o m
    this[counter] = this[index];
    this[index] = temp;
  }
  
  return this;
};

Related

  1. shuffle()
    Array.prototype.shuffle=function() {
      var i=this.length,j,t;
      while(i--) {
        j=Math.floor((i+1)*Math.random());
        t=arr[i];
        arr[i]=arr[j];
        arr[j]=t;
    
  2. shuffle()
    Array.prototype.shuffle = function () {
      var i = this.length,
        j, t;
      var arr = this;
      while (i--) {
        j = Math.floor((i + 1) * Math.random());
        t = arr[i];
        arr[i] = arr[j];
        arr[j] = t;
    ...
    
  3. shuffle()
    Array.prototype.shuffle = function() {
        for (var j, x, i = this.length - 1; i; j = randomNumber(i), x = this[--i], this[i] = this[j], this[j] = x);
        return this;
    };
    
  4. shuffle()
    Array.prototype.shuffle = function () {
        var c = this.slice(0);
        for (var j, x, i = this.length; i; j = parseInt(Math.random() * i), x = this[--i], this[i] = this[j], this[j] = x);
        if (this.compare(c)) {
            this.shuffle();
        return this;
    }; 
    
  5. shuffle()
    Array.prototype.shuffle = function(){
      var counter = this.length, temp, index;
        while (counter > 0){
          index = Math.floor(Math.random() * counter);
          counter--;
          temp = this[counter];
          this[counter] = this[index]
          this[index] = temp;
        };
    ...
    
  6. shuffle(b)
    function random(min, max) 
      return Math.floor(Math.random() * (max - min + 1)) + min; 
    };
    function getRandomColor()
      return 'rgb(' + random(0, 255) + ', ' + random(0, 255) + ', ' + random(0, 255) + ')';
    };
    function generateRandomSymbols()
    ...
    
  7. shuffle(maxLength)
    Array.prototype.shuffle = function (maxLength) {
        var currentIndex = this.length
        var temporaryValue;
        var randomIndex;
        var result;
        maxLength = maxLength || this.length
        while (0 !== currentIndex) {
          randomIndex = Math.floor(Math.random() * currentIndex);
          currentIndex -= 1;
    ...
    
  8. shuffle(n)
    Array.prototype.shuffle = function (n) {
        var params = [].slice.call(arguments);
        var index = -1,
            result = this,
            length = result.length,
            lastIndex = length - 1;
        while (++index < n) {
            var rand = index + Math.floor(Math.random() * (lastIndex - index + 1));
                value = result[rand];
    ...
    
  9. shuffle(times)
    Array.prototype.shuffle = function(times) {
        if(undefined === times) times = this.length * 2;
        var temp;
        while(times--) {
            var a = Number.random(0, this.length - 1);
            var b = Number.random(0, this.length - 1);
            temp = this[a];
            this[a] = this[b];
            this[b] = temp;
    ...