mirror of
https://github.com/reality/dbot.git
synced 2026-04-07 15:48:09 +02:00
4 lines
99 B
JavaScript
4 lines
99 B
JavaScript
Array.prototype.random = function() {
|
|
return this[Math.floor((Math.random()*this.length))];
|
|
};
|