1.1.0 • Published 3 years ago

math-project v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Math Functions

Module to realize msimple math operations

Instalation

Follow this instructions

npm install math-project

Use

Follow this instructions

//Import module
const mod = require('.');

//Sum
console.log(mod.sum(2,6)); => 8

//Rest
console.log(mod.rest(2,6)); => -4

//Multiplication
console.log(mod.multiplication(2,6)); => 12

//Division
console.log(mod.division(2,6)); => 0.3333