Answers for "create new prototype javascript"

3

prototype javascript

function Person(first, last, age, eye) {
this.firstName = first;
this.lastName = last;
this.age = age;
this.eyeColor = eye;
}

Person.prototype.nationality = "English";

var myFather = new Person("John", "Doe", 50, "blue");
console.log("The nationality of my father is " + myFather.nationality)
Posted by: Guest on October-22-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language