Sign in
apache
/
netbeans
/
2db2714dd98329c95b7263f198f281a84c44638e
/
.
/
webcommon
/
javascript2.nodejs
/
test
/
unit
/
data
/
TestNavigation
/
public_html
/
js
/
address.js
blob: e9244ba47c9337de1c38719270aa004e08a38b78 [
file
]
var
Address
=
function
(
street
,
town
)
{
this
.
street
=
street
;
this
.
town
=
town
;
}
Address
.
prototype
.
print
=
function
()
{
console
.
log
(
this
.
street
+
" : "
+
this
.
town
);
}
module
.
exports
=
new
Address
(
"Naskove"
,
"Prague"
);