1.0.1 • Published 8 years ago

jsope v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
8 years ago

jsope --This is a mathematical operation

Introduction

npm install jsope

Use jsope

file : jsope_test.js

var V=require("./jsope");
var c= console;

var A=10;
var B=5; 

c.log("A+B=",V.add(A,B));
c.log("A-B=",V.sol(A,B));
c.log("A*B=",V.mul(A,B));
c.log("A/B=",V.div(A,B));

run

$ node jsope_test
A+B=15
A-B=5
A*B=50
A/B=2

Information

You may mail to peter50107@gmail.com to contact the author.

Enjoy it !