UNPKG
zen_jan_25_calc_add_mult
Version:
latest (1.0.0)
1.0.0
Simple Mathematical Calculator
zen_jan_25_calc_add_mult
/
index.js
9 lines
•
218 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
// ES5 class Calculator
module
.
exports
.
Calculator
=
function
(
){
this
.
addition
=
function
(
no1,no2
){
return
no1+no2; },
this
.
multiplication
=
function
(
no1,no2
){
return
no1*no2; } }