lights-mathjs
v1.0.0
Published
Installation: `npm i lights-mathjs`<br> Usage:
Readme
Lights MathJS
Installation: npm i lights-mathjs
Usage:
const math = require("lights-mathjs");
// Or with destructuring
const { Circle } = require("lights-mathjs");
const circ = new Circle(3);
console.log(circ.area()); // Output: area of a circle with a radius of 3
console.log(circ.perimeter()); // Output: perimeter of a circle with a radius of 3