Javascript Random Seeds - Stack Overflow
Is it possible to seed the random number generator (Math.random) in Javascript? ... Combining some of the previous answers, this is the seedable random function you are looking for: Math.seed = function(s) { var m_w = s; var m_z = 987654321; var mask ......