Utilities

Random

Random integer generator utility.

## Source Code File: `src/utils/functions/random.ts` ```typescript export const randomInt = (min: number, max: number) => { return Math.floor(Math.random() * (max - min + 1)) + min; }; ``` ## Description The `randomInt` function generates a random integer within a specified range (inclusive). **Parameters:** - `min`: Minimum value (inclusive) - `max`: Maximum value (inclusive) **Returns:** A random integer between min and max (both inclusive) This utility is useful for generating random test data, mock values, or any scenario requiring random integer generation.

Found a bug? Let us know →

Angular Material Blocks Logo

Angular Material Dev UI (or Angular Material Blocks) is one place stop for developers to explore components and blocks for their Angular Material and Tailwind CSS based applications.

Find us on X (Twitter), LinkedIn, Instagram & Threads