I have one array like this:
var arr 1 = ["a", "b", "c", "d"];
How can I randomize / shuffle it?
|
I have one array like this:
How can I randomize / shuffle it? |
||||
|
|
|
Credit goes here.
Some more info about the algorithm used. |
|||||||||||||||||||||
|
|
Here is a JavaScript implementation of the Fisher-Yates shuffle:
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 |
|||||||
|
|
One could (or should) use it as a protoype from Array: From ChristopheD:
|
||||
|
|
|
One implementation:
[Edit] Much simpler implementation from here.
|
|||||||
|
|
Use the underscore.js library. Method _.shuffle() very good. Here is a test this method :
|
|||||||
|
|
Adding to @Laurens Holsts answer. This is 50% compressed.
|
|||||||||||||||||
|
|
|||
|
|
|||
|