All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.app.shared.tools.number-utils.ts Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version

export function randomIntFromInterval(min, max) {
    return Math.floor(Math.random() * (max - min + 1) + min);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy