Created
August 8, 2014 11:31
-
-
Save lelinhtinh/c6785216021b4af38fc2 to your computer and use it in GitHub Desktop.
Đảo ngẫu nhiên đối tượng trong mảng
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://devs.forumvi.com/t571-gist-shuffle-array-dao-ngau-nhien-doi-tuong-trong-mang | |
var arr = [1, 2, 3, 4, 5]; | |
/** | |
* Shuffling (randomizing) the order of an array | |
* http://www.javascriptkit.com/javatutors/arraysort.shtml | |
*/ | |
arr.sort(function () { | |
return .5 - Math.random(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment