math-made-simple
Version:
easy to use number tool
42 lines (16 loc) • 777 B
Markdown
## Quick Math - A work in progress simple solution to intergrating numbers into your project
A Guide to for every number manipulation
### `Adding a Random Number`
1.) Import randomNumber using require
const randomNumber = require('math-made-simple');
2.) Create a random number (rounded) using thedollowing function
randomNumber(lowest-number,highest-number);
-lowest and highest being your required values / if left blank min & max = 0/1
example :
```
const randomNumber = require('math-made-simple')
console.log(randomNumber(1,3));
```
### `upcoming features`
**Thank You for checking out this Repo**
## This NPM makes use of Math. a popular library for math functions and manipulations