Skip to content

Instantly share code, notes, and snippets.

@space11
Created August 15, 2023 18:02
Show Gist options
  • Save space11/baee5092215534bc3a9eda3324c83d81 to your computer and use it in GitHub Desktop.
Save space11/baee5092215534bc3a9eda3324c83d81 to your computer and use it in GitHub Desktop.
Generates random number of digits of given length.
function generateRandomNumber(length: number): number {
return parseInt(
Math.ceil(Math.random() * Date.now())
.toPrecision(length)
.toString()
.replace('.', ''),
10
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment