7 lines
160 B
JavaScript
7 lines
160 B
JavaScript
Array.prototype.random = function() {
|
|
return this[Math.floor(this.length * Math.random())];
|
|
}
|
|
|
|
module.exports = {
|
|
randomArray: Array.prototype.random
|
|
}; |