UNPKG
zendap_calculator
Version:
latest (1.0.0)
1.0.0
Simple calculator with square and cube functionality
zendap_calculator
/
index.js
9 lines
(8 loc)
•
172 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
module
.
exports
.
Calculator
=
function
(
){
this
.
square
=
function
(
no
){
return
no*no; },
this
.
cube
=
function
(
no
){
return
no*no*no; } }