P
ROTOTYPE
I'm Not Only The Prototype, I'm Also A Member.
home
▪
stats
▪
search
▪
linkback
▪
about
▪
FAQ
| user: guest,
login
,
register
Array
:
Array.prototype.mix
author:
Madokan
[+]
,
Submitted: 10.21.02 9a
• Last Edit: 11.02.02 11a
// Feldinhalte Mischen Array.prototype.mix = function() { var anzahl = this.length; for (var i = 0; i < anzahl; i++) { var zNum = Math.floor(Math.random() * anzahl); var temp = this[i]; this[i] = this[zNum]; this[zNum] = temp; } };
usage
// Call personen = ["Rena", "HOK", "DASSOUD", "MADOKAN", "FLASH", "POWER"]; personen.mix(); // Output Window trace(personen); [url="http://www.flashstar.de/tutlist/"]FLA Portal[/url]
Add Comment
[+]
›opyleft 2001-2010. Layer51 is: Jaime Prado.
@