1
<script>
2
function person(firstname, lastname, age, eyecolor) {
3
this.firstname = firstname;
4
this.lastname = lastname;
5
this.age = age;
6
this.eyecolor = eyecolor;
7
}
8
myFather = new person("John", "Doe", 50, "blue");
9
document.write(myFather.firstname + " is " + myFather.age + " years old.");
10
</script>