UNPKG
simplecalculater
Version:
latest (1.0.1)
1.0.1
1.0.0
laxmichandra dhuvare
simplecalculater
/
index.js
8 lines
•
181 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
module
.
exports
.
ZenCalculator
=
function
(
){
this
.
add
=
function
(
no1,no2
){
return
no1+no2; },
this
.
mult
=
function
(
no1,no2
){
return
no1*no2; } }