From bac2526c99506ecc9a2e04905e3d0307233e47f2 Mon Sep 17 00:00:00 2001 From: WlodekM Date: Tue, 2 Jul 2024 15:10:24 +0300 Subject: Initial commit --- lib.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 lib.js (limited to 'lib.js') diff --git a/lib.js b/lib.js new file mode 100644 index 0000000..64b0d6c --- /dev/null +++ b/lib.js @@ -0,0 +1,15 @@ +/** + * Returns a random integer between min (inclusive) and max (inclusive). + * The value is no lower than min (or the next integer greater than min + * if min isn't an integer) and no greater than max (or the next integer + * lower than max if max isn't an integer). + * Using Math.round() will give you a non-uniform distribution! + * @param {Number} min Min number + * @param {Number} max Max number + * @returns {Number} + */ +export function getRandomInt(min, max) { + min = Math.ceil(min); + max = Math.floor(max); + return Math.floor(Math.random() * (max - min + 1)) + min; +} \ No newline at end of file -- cgit 1.4.1-2-gfad0