UNPKG

web-tools_td_20171017

Version:
12 lines (11 loc) 239 B
/** * * @desc 生成指定范围随机数 * @param {Number} min * @param {Number} max * @return {Number} */ function randomNum(min, max) { return Math.floor(min + Math.random() * (max - min)); } module.exports = randomNum;