jmathematic
v0.1.2
Published
Basic math arithmetic operations
Downloads
1
Readme
jmathematic is Javascript library written in C++
We can use 4 basic operators plus, minus, divide and multiple. Using normal operators like + or - , we can get incorrect value For exaple 1.2 + 0.6 gave to us 1.7999999999999998. Now if we use plus(1.2, 0.6) it return 1.8.
const jmathematic = require('jmathematic');
Functions: jmathematic.plus, jmathematic.minus, jmathematic.divide and jmathematic.multiple