2.1.2 • Published 5 years ago
@dmhtoo/random-int v2.1.2
Random integer
Generate a random integer in Javascript (ES6), within a given range
This package is compatible with Typescript
Installation
npm install random-int --save
or
yarn add random-int
Syntax
randomInt(low, high);
Parameters
low: Optional minimum value (included). This defaults to1.high: Optional maximum value (included). This defaults to100.
Return value
randomIntwill return a randomly generatedInteger, including thelowandhighlimits.
Usage
Import the randomInt function
import { randomInt } from "@dmhtoo/random-int";or
const { randomInt } = require("@dmhtoo/random-int")Sample implementations
// Returns a random integer between default limits of 1 and 100, inclusive.
const myRandomInteger = randomInt();
// Returns a random integer between 1 and 10, inclusive.
const myRandomInteger = randomInt(1, 10);