Skip to content

Instantly share code, notes, and snippets.

@AshKyd
Created August 17, 2015 23:03
Show Gist options
  • Save AshKyd/cdb5056251fe1576d36f to your computer and use it in GitHub Desktop.
Save AshKyd/cdb5056251fe1576d36f to your computer and use it in GitHub Desktop.
Tiny seeded pseudorandom number generator.
function random(seed) {
var x = Math.sin(seed) * 10000;
return x - Math.floor(x);
}
var mySeed = 1234;
for(var i=0; i<10; i++){
console.log(random(mySeed++));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment