Skip to content

Instantly share code, notes, and snippets.

@tanrax
Created January 6, 2014 21:44
Show Gist options
  • Save tanrax/8290314 to your computer and use it in GitHub Desktop.
Save tanrax/8290314 to your computer and use it in GitHub Desktop.
JS: Número al azar entre dos (random, aleatorio)
function randomFromInterval(from,to) {
return Math.floor(Math.random()*(to-from+1)+from);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment