basic-math-fn
v1.0.1
Published
A module of basic math functions, add, subtract, multiply, and divide
Readme
Basic Math Functions
Is a library that contains common math functions, mainly for practicing function composability.
Demo
const { add } = require('basic-math-fn')
add(1,2)
=> 3Install
npm install basic-math-fn
Api
- add(a,b)
- subtract(a, b)
- multiply(a, b)
- divide(a, b)
