Sign in
apache
/
netbeans
/
2db2714dd98329c95b7263f198f281a84c44638e
/
.
/
webcommon
/
javascript2.nodejs
/
test
/
unit
/
data
/
TestNavigation
/
public_html
/
js
/
square.js
blob: 83a1cff908add0879c9a81a58e73417c9433fb23 [
file
]
// assigning to exports will not modify module, must use module.exports
module
.
exports
=
function
(
width
)
{
return
{
area
:
function
()
{
return
width
*
width
;
}
};
}