Node.js examples for Number:Random Number
Get random In Range
exports.randomInRange = function (from, to) { return Math.floor(Math.random() * (to - from)) + from; };