3.0.5 • Published 4 years ago
ssm-js v3.0.5
ssm-js - Super Simple Math JS
Installation:
npm i ssm-js
#or
yarn add ssm-jsUsage examples
Plus
const supermathjs = require("ssm-js");
let myPlus = supermathjs.plus(6); // return 12Minus
const supermathjs = require("ssm-js");
let myPlus = supermathjs.minus(6); // return 0Multiply
const supermathjs = require("ssm-js");
let myPlus = supermathjs.multiply(36); // return 4Divide
const supermathjs = require("ssm-js");
let myPlus = supermathjs.divide(6); // return 1Second
const supermathjs = require("ssm-js");
let myPlus = supermathjs.degreeSc(6); // return 36Third
const supermathjs = require("ssm-js");
let myPlus = supermathjs.degreeTh(6); // return 216Evevn or odd number
const supermathjs = require("ssm-js");
let evenOrOdd = supermathjs.evenOdd(8); // return Even Number