Created
March 7, 2014 13:04
-
-
Save d-simon/9411089 to your computer and use it in GitHub Desktop.
Shuffle Array
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
shuffle = function(v){ | |
for(var j, x, i = v.length; i; j = parseInt(Math.random() * i), x = v[--i], v[i] = v[j], v[j] = x); | |
return v; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment