Node.js examples for Number:Int
Convert Number to int
Number.prototype.toInt = function() { return (this | 0); }; Array.prototype.random = function() { return this[ Math.floor(Math.random() * this.length) ]; };