ich haette auch noch eine loesung anzubieten:
Array.prototype.shuffle = (function () {
this.sort(function () {
return (0.5 - Math.random());
});
});
Die war hier auch schon im Gespräch, sie zwar absolut elegant aber auch extrem langsam.
Struppi.