Minified randomNumber utility

This commit is contained in:
Your Name 2022-11-24 10:24:34 +02:00
parent 9404b4988d
commit ff3ce93510
1 changed files with 1 additions and 2 deletions

View File

@ -1,4 +1,3 @@
export function randomNumber() {
const num = Math.floor(Math.random() * 80);
return num;
return Math.floor(Math.random() * 80);
}