Last active
August 29, 2015 13:56
-
-
Save ProProgrammer/9202491 to your computer and use it in GitHub Desktop.
Random number - Not probably as good as Mersenne twister - http://en.wikipedia.org/wiki/Mersenne_twister
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Get a random value from a list of words | |
list1 = ["Hi", "How", "are", "you"]; | |
list1[Math.floor(Math.random() * list1.length)]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment