"prototype" . [[Proto]], , ( : Firefox, __proto__).
Javascript, , , Object.create [[Prototype]]:
function Animal() {
this.name = "animal";
this.writeName = function() {
document.write(this.name);
}
}
function Dog() {
var dog = Object.create(new Animal())
dog.name = "dog";
return dog;
}
(new Dog()).writeName()
- , Object.create new Animal , , , .