Skip to content

Instantly share code, notes, and snippets.

@lelinhtinh
Created August 8, 2014 11:31
Show Gist options
  • Save lelinhtinh/c6785216021b4af38fc2 to your computer and use it in GitHub Desktop.
Save lelinhtinh/c6785216021b4af38fc2 to your computer and use it in GitHub Desktop.
Đảo ngẫu nhiên đối tượng trong mảng
// 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