Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have one array like this:

var arr 1 = ["a", "b", "c", "d"];

How can I randomize / shuffle it?

share|improve this question

8 Answers

up vote 71 down vote accepted

Credit goes here.

function fisherYates ( myArray ) {
  var i = myArray.length, j, temp;
  if ( i === 0 ) return false;
  while ( --i ) {
     j = Math.floor( Math.random() * ( i + 1 ) );
     temp = myArray[i];
     myArray[i] = myArray[j]; 
     myArray[j] = temp;
   }
}

Some more info about the algorithm used.

share|improve this answer
2  
Here's a CoffeeScript implementation of the Fisher-Yates algorithm: gist.github.com/859699 – Derek Dahmer Mar 8 '11 at 1:57
5  
The above answer skips element 0, the condition should be i-- not --i. Also, the test if (i==0)... is superfluous since if i == 0 the while loop will never be entered. The call to Math.floor can be done faster using ...| 0. Either tempi or tempj can be removed and the value be directly assigned to myArray[i] or j as appropriate. – RobG Jun 8 '11 at 7:21
10  
@prometheus, all RNGs are pseudo-random unless connected to expensive hardware. – Phil H Apr 13 '12 at 14:10
6  
@RobG the implementation above is functionally correct. In the Fisher-Yates algorithm, the loop isn't meant to run for the first element in the array. Check out wikipedia where there are other implementations that also skip the first element. Also check out this article which talks about why it is important for the loop not to run for the first element. – theon Jul 20 '12 at 12:57
2  
@nikola "not random at all" is a little strong a qualification for me. I would argue that it is sufficiently random unless you're a cryptographer, in which case you're probably not using Math.Random() in the first place. – toon81 Apr 24 at 9:19
show 9 more comments

Here is a JavaScript implementation of the Fisher-Yates shuffle:

/**
 * Randomize array element order in-place.
 * Using Fisher-Yates shuffle algorithm.
 */
function shuffleArray(array) {
    for (var i = array.length - 1; i > 0; i--) {
        var j = Math.floor(Math.random() * (i + 1));
        var temp = array[i];
        array[i] = array[j];
        array[j] = temp;
    }
    return array;
}

The Fisher-Yates algorithm works by picking one random element for each original array element, and then excluding it from the next draw. Just like randomly picking from a deck of cards.

This exclusion is done in a clever way by swapping the picked element with the current element, and then picking the next random element from the remainder. For optimal efficiency, the loop runs backwards so that the random pick is simplified (it can always start at 0), and it skips the last element because there are no other choices anymore.

The running time of this algorithm is O(n). Note that although it does return the array for convenience, the shuffle is done in-place. So if you do not want to modify the original array, make a copy of it first with .slice(0).

share|improve this answer
p.s. The same algorithm as ChristopheD’s answer, but with explanation and cleaner implementation. – Laurens Holst Sep 28 '12 at 20:47
3  
+1 internetz to you for simple implementation. – ryan Mar 21 at 7:01

One could (or should) use it as a protoype from Array:

From ChristopheD:

Array.prototype.shuffle = function() {
  var i = this.length, j, temp;
  if ( i == 0 ) return this;
  while ( --i ) {
     j = Math.floor( Math.random() * ( i + 1 ) );
     temp = this[i];
     this[i] = this[j];
     this[j] = temp;
  }
  return this;
}
share|improve this answer

One implementation:

["a", "b", "c", "d"].sort(function() { return Math.floor(Math.random()*3 -1)});

[Edit] Much simpler implementation from here.

["a", "b", "c", "d"].sort(function() { return 0.5 - Math.random();});
share|improve this answer
31  
For anyone thinking of actually using this, I encourage you to read this first: robweir.com/blog/2010/02/microsoft-random-browser-ballot.html – Shog9 Mar 15 '10 at 23:20
Thanks for that link @Shog9, I was kind of excited for a minute there. – joemaller Nov 21 '12 at 3:22

Use the underscore.js library. Method _.shuffle() very good. Here is a test this method :

var _ = require("underscore");

var arr = [1,2,3,4,5,6];
// Testing _.shuffle
var testShuffle = function () {
    var indexOne = 0;
    var stObj = {'0':0,'1':1,'2':2,'3':3,'4':4,'5':5};
    for (var i = 0; i < 1000; i++) {
        arr = _.shuffle(arr);
        indexOne = _.indexOf(arr, 1);
        stObj[indexOne] ++;
    }
    console.log(stObj);
};
testShuffle();
share|improve this answer
2  
Great answer! Thanks. I prefer it to the other answers, as it encourages people to use libraries rather than copy and paste potentially buggy functions everywhere. – frabcus Apr 4 at 15:07
@frabcus: There's no point in including an entire library just to get a shuffle function. – Blender Jun 8 at 20:42

Adding to @Laurens Holsts answer. This is 50% compressed.

function shuffleArray(d){for(var c=d.length-1;c>0;c--){var b=Math.floor(Math.random()*(c+1));var a=d[c];d[c]=d[b];d[b]=a}return d};
share|improve this answer
Downvoter explain? – KingKongFrog Apr 4 at 16:10
We should be encouraging people to use _.shuffle rather than pasting code from stack overflow; and, we should be discouraging people from compressing their stack overflow answers. That's what jsmin is for. – David Jones Apr 5 at 8:28
4  
@DavidJones: Why would I include an entire 4kb library just to shuffle an array? – Blender May 4 at 19:23
1  
@KingKongFrog you shouldn't have been downvoted. Here's a +1 your way. – wheaties May 8 at 2:36
1  
@KingKongFrog name calling is also not conductive to a assemblage of a reasonable community. – wheaties May 8 at 3:21
function randOrd(){
    return (Math.round(Math.random())-0.5);
 } 
anyArray = new Array('3','a','5','F','x','47');
anyArray.sort( randOrd );
document.write('Random : ' + anyArray + '<br />';);

http://javascript.about.com/library/blsort2.htm

share|improve this answer
Same answer as Chetan Sastry already gave, with the same fundamental problem (see Shog9’s comment). Hence, downvote. – Laurens Holst May 16 at 9:56
array.sort(function(a,b) {
        return Math.random() - 0.5;
});
share|improve this answer
Same answer as Chetan Sastry already gave, with the same fundamental problem (see Shog9’s comment). Hence, downvote. – Laurens Holst May 16 at 9:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.