Skip to content

Instantly share code, notes, and snippets.

@carolina-vallejo
Created September 18, 2017 18:33
Show Gist options
  • Save carolina-vallejo/502bb9962566904e032ca7b6abf23dde to your computer and use it in GitHub Desktop.
Save carolina-vallejo/502bb9962566904e032ca7b6abf23dde to your computer and use it in GitHub Desktop.
random function javascsript
function getRnd(max, min) {
return Math.random() * (max - min) + min;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment