UNPKG
zen_aug_2025_test_calc_add_mult
Version:
latest (1.1.0)
1.1.0
1.0.0
simple calculator module with add, mult and sub
zen_aug_2025_test_calc_add_mult
/
index.js
12 lines
•
265 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
// ES5 class Calculator
module
.
exports
.
Calculator
=
function
(
){
this
.
add
=
function
(
n1,n2
){
return
n1 + n2; },
this
.
mult
=
function
(
n1,n2
){
return
n1 * n2; },
this
.
sub
=
function
(
n1,n2
){
return
n1 - n2; } }