mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-02 20:08:18 +08:00
added 0 to 58008
This commit is contained in:
parent
ef243a96e1
commit
765a586329
1 changed files with 1 additions and 1 deletions
|
@ -294,7 +294,7 @@ function getNumbers() {
|
|||
let randLen = Math.floor(Math.random() * 7) + 1;
|
||||
let ret = "";
|
||||
for (let i = 0; i < randLen; i++) {
|
||||
randomNum = Math.floor(Math.random() * 9) + 1;
|
||||
randomNum = Math.floor(Math.random() * 10);
|
||||
ret += randomNum.toString();
|
||||
}
|
||||
return ret;
|
||||
|
|
Loading…
Reference in a new issue