locutus
Version:
Locutus other languages' standard libraries to JavaScript for fun and educational purposes
10 lines (9 loc) • 356 B
JavaScript
export function lcg_value() {
// discuss at: https://locutus.io/php/lcg_value/
// parity verified: PHP 8.3
// original by: Onno Marsman (https://twitter.com/onnomarsman)
// example 1: var $rnd = lcg_value()
// example 1: var $result = $rnd >= 0 && $rnd <= 1
// returns 1: true
return Math.random();
}