@dmhtoo/random-int
v2.1.2
Published
Generate a random integer in Javascript (ES6), within a given range.
Downloads
147
Maintainers
Readme
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
randomInt
will return a randomly generatedInteger
, including thelow
andhigh
limits.
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);