4 lines
88 B
TypeScript
4 lines
88 B
TypeScript
export function randomNumber(): number {
|
|
return Math.floor(Math.random() * 100000);
|
|
}
|