random-calculations
Version:
Simple library for arithmetic operations
25 lines (16 loc) • 486 B
Markdown
# Install
$ npm i random-calculations
# Example Usage
First, we need to definition package
```js
const { answer, question } = require("random-calculations");
console.log(`question is ${question} The solve is ${answer}`);
```
To include arabic number in solve
you will add to answer AR example
```js
const { answer, question, ar } = require("random-calculations");
console.log(`question is ${question} The solve is ${ar} `);
```
# Links
coming soon