Sign in
apache
/
netbeans
/
2db2714dd98329c95b7263f198f281a84c44638e
/
.
/
webcommon
/
javascript2.nodejs
/
test
/
unit
/
data
/
TestNavigation
/
public_html
/
js
/
circle.js
blob: 931c900330d62ca18e2985a572ee4044f8b82fa9 [
file
]
var
PI
=
Math
.
PI
;
exports
.
area
=
function
(
r
)
{
return
PI
*
r
*
r
;
};
exports
.
circumference
=
function
(
r
)
{
return
2
*
PI
*
r
;
};