Created
November 12, 2015 04:07
-
-
Save catdad/625b836d9428da21a58b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// http://jsfromhell.com/array/shuffle | |
function shuffle(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