Skip to content

Instantly share code, notes, and snippets.

@mmalone
Last active November 17, 2015 23:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mmalone/178e4e9484231b343a1a to your computer and use it in GitHub Desktop.
Save mmalone/178e4e9484231b343a1a to your computer and use it in GitHub Desktop.
// January 12, 1999 / V8 PRNG: ((r0 << 16) + (r1 ^ 0xFFFF)) % 2^32
var x = ((r0 << 16) + (r1 & 0xFFFF)) | 0;
// January 20, 1999: (r0 << 16) + r1) % 2^32
var x = ((r0 << 16) + r1) | 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment