Make all arrays have "random" method Array.prototype.random = function() { return this[Math.floor(Math.random() * this.length)]; } //Call "random" method on ...
確定! 回上一頁