locutus
Version:
Locutus other languages' standard libraries to JavaScript for fun and educational purposes
12 lines (11 loc) • 393 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getrandmax = getrandmax;
function getrandmax() {
// discuss at: https://locutus.io/php/getrandmax/
// parity verified: PHP 8.3
// original by: Onno Marsman (https://twitter.com/onnomarsman)
// example 1: getrandmax()
// returns 1: 2147483647
return 2147483647;
}