UNPKG
npm-helloworld-with-radius-perimeter-01
Version:
latest (1.0.0)
1.0.0
This is hello world!
npm-helloworld-with-radius-perimeter-01
/
index.js
3 lines
•
142 B
JavaScript
View Raw
1
2
3
module
.
exports
.
area
=
radius
=>
Math
.
PI
*radius*radius
module
.
exports
.
perimeter
=
radius
=>
2
*
Math
.
PI
*radius
module
.
exports
.
para
=
()=>
"HELLO WORLD!"