aimgame/src/utils/randomNumber.js

3 lines
77 B
JavaScript
Raw Permalink Normal View History

export function randomNumber() {
2022-11-24 09:24:34 +01:00
return Math.floor(Math.random() * 80);
}