Answers for "[[ prototype ]]"

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
0

[[Prototype]]

var proto = {    describe: function () {        return 'name: '+this.name;    }};var obj = {    [[Prototype]]: proto,    name: 'obj'};
Posted by: Guest on September-12-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language