Simply generate a random integer with this utility method.
The generator is inclusive on both ends, so quick_int(0, 10)
could produce 0
, 10
, or any whole number in between.
You can use the CDN version of this plugin for fast and easy setup.
<script src="https://unpkg.com/quick-int@latest/index.js"></script>
You can install quick-int with just one command and you're good to go
# with npm
npm i quick-int
# with yarn
yarn add quick-int
import quick_int from "quick-int";
const my_int_01 = quick_int({ min: 0, max: 100 });
const my_int_02 = quick_int(0, 100);
const my_int_03 = quick_int();