Skip to content

Instantly share code, notes, and snippets.

@volkanozcan
Forked from volqii/gist:7936526
Last active August 29, 2015 14:16
Show Gist options
  • Save volkanozcan/271fa484d9b515f8e5ea to your computer and use it in GitHub Desktop.
Save volkanozcan/271fa484d9b515f8e5ea to your computer and use it in GitHub Desktop.
javascript:random
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