easy-math-operations
v1.0.0
Published
do simple math operations
Downloads
2
Readme
Easy Math Operations
do simple math operations
Install Easy Math Operations
npm i easy-math-operations
Add a number
const mathoperations = require('easy-math-operations');
mathoperations.addition(firstnumber, secondnumber);
Subtract a number
const mathoperations = require('easy-math-operations');
mathoperations.subtraction(firstnumber, secondnumber);
Multiply a number
const mathoperations = require('easy-math-operations');
mathoperations.multiplication(firstnumber, secondnumber);
Divide a number
const mathoperations = require('easy-math-operations');
mathoperations.division(firstnumber, secondnumber);