qieziStatistics/util/NumberUtil.ts

8 lines
180 B
TypeScript
Raw Normal View History

2022-02-10 17:04:17 +08:00
class NumberUtil {
static getRandom(min: number, max: number): number {
return Math.floor((Math.random() * (max - min + 1) + min));
}
}
export default NumberUtil;