Skip to content

Instantly share code, notes, and snippets.

@volqii
Created December 12, 2013 22:14
Show Gist options
  • Save volqii/7936526 to your computer and use it in GitHub Desktop.
Save volqii/7936526 to your computer and use it in GitHub Desktop.
JAVASCRIPT:random_number
function rastgele (x,y) {
/*x ten y'ye kadar rastgele sayı ver*/
return ~~(Math.random() * y) + x;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment