function
objOne(arg0, arg1) {
this
.val = arg0;
.str = arg1;
}
funMake() {
var
O =
new
objOne(5,
'Hello World!'
);
objOne.prototype.fun =
() {
for
(
i=0; i<
.val; i++) {
document.write(
.str +
'<br />'
O.fun();
<!DOCTYPE html>
<
html
>
head
meta
charset
=
"utf-8"
/>
title
>New Page</
script
src
"js/script.js"
></
</
body
funMake();