Data hosted with ♥ by
Pastebin.com
-
Download Raw
-
See Original
<
body
>
<
script
>
function
Student
(
name
)
{
this
.
name
=
name
;
this
.
getName
=
getName
;
}
function
getName
(
)
{
return
this
.
name
;
}
var
obj
=
new
Student
(
"Hello"
)
;
document.
write
(
obj.
getName
(
)
)
;
</
script
>
</
body
>