Source Code
var seed = 42;
function mulberry32(a) { var t = a += 0x6D2B79F5; t = Math.imul(t ^ t >>> 15, t | 1); t ^= t + Math.imul(t ^ t >>> 7, t | 61); return ((t ^ t >>> 14) >>> 0) / 4294967296; } var d = new Date(); var n = d.getUTCSeconds();
console.log(mulberry32(n))

Log in or sign up for Devpost to join the conversation.