How can I shuffle an array\'s values in the most efficient manner possible?
Each element is just a string containing HTML.
This is my solution to shuffle an array:
function shuffle(array) { var resultArray = new Array(); for(i=0;i
This is a shuffle contest to compare my method with the other 2
http://jsperf.com/shuffle-contest/2