Skip to content

Instantly share code, notes, and snippets.

@dSalieri
Created September 19, 2021 08:05
Show Gist options
  • Select an option

  • Save dSalieri/c2cb279452e525630132b2f5d8660598 to your computer and use it in GitHub Desktop.

Select an option

Save dSalieri/c2cb279452e525630132b2f5d8660598 to your computer and use it in GitHub Desktop.
Pseudorandom is based on Math.random function
function rand(start, end){
return start + (Math.round(Math.random() * Math.abs(start - end)));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment