1.1.0 • Published 1 month ago

xevurah-math-app v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

Math Operations

Module to make simple math operations

Installation

Follow this instructions

npm install <xevurah-math-app> 

Usage

Follow this instructions

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

//Sum
Console.log(m.sum(1,2)); => 3

Console.log(m.sum(1,34)); => 35

//Subtraction
Console.log(m.substraction(1,2)); => -1

Console.log(m.substraction(1,34)); => -33

//Multiplication
Console.log(m.multiplication(2,2)); => 4

Console.log(m.multiplication(2,35)); => 70

//Division
Console.log(m.division(2,2)); => 1

Console.log(m.division(2,35)); => 0.0571428571428571
1.1.0

1 month ago

1.0.2

1 month ago

1.0.1

1 month ago

1.0.0

1 month ago