xyyd-fatfox/src/utils/tool.ts

9 lines
212 B
TypeScript
Raw Normal View History

2024-10-23 14:57:27 +08:00
/**
*
* @param min
* @param max
* @returns
*/
export function randomNum(min: number, max: number) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}