Skip to content

Instantly share code, notes, and snippets.

@hmmhmmhm
Created August 30, 2021 09:59
Show Gist options
  • Select an option

  • Save hmmhmmhm/6924afc3d67294730c1611eca95f8be5 to your computer and use it in GitHub Desktop.

Select an option

Save hmmhmmhm/6924afc3d67294730c1611eca95f8be5 to your computer and use it in GitHub Desktop.
How to create a random number that can be scoped briefly
// ~~(min + Math.random() * max)
// 0 ~ 100
~~(Math.random() * 100)
// 1 ~ 5
~~(1 + Math.random() * 5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment