Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 678593
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T01:10:01+00:00 2026-05-14T01:10:01+00:00

This is about inheritance in JavaScript. Suppose I create a constructor Bird(), and another

  • 0

This is about “inheritance” in JavaScript.

Suppose I create a constructor Bird(), and another called Parrot() which I make to “inherit” the properties of Bird by assigning an instance of it to Parrot’s prototype, like the following code shows:

function Bird() {
    this.fly = function(){};
}

function Parrot() {
    this.talk = function(){ alert("praa!!"); };
}
Parrot.prototype = new Bird();

var p = new Parrot();

p.talk(); // Alerts "praa!!"
alert(p.constructor); // Alerts the Bird function!?!?!

After I’ve created an instance of Parrot, why is the .constructor property of it Bird(), and not Parrot(), which is the constructor I’ve used to create the object?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T01:10:01+00:00Added an answer on May 14, 2026 at 1:10 am

    Prototype is an object just like anything else in JavaScript and object assignments are by reference. You just assigned a new bird to parrot’s prototype so parrot’s prototype is now a bird instance. And a bird’s constructor is Bird.

    You could fix this with the line

    Parrot.prototype.constructor = Parrot;
    

    Another way to do this would be to assign a clone of Bird’s prototype to Parrot.prototype

    function deepClone(obj) {
        var clone = {};
        for(var i in obj) {
            if(typeof(obj[i])==="object") {
                clone[i] = deepClone(obj[i]);
            } else {
                clone[i] = obj[i];
            }
        }
        return clone;
    }
    
    
    Parrot.prototype = deepClone(Bird.prototype);
    Parrot.prototype.constructor = Parrot;
    

    I prefer this because:

    1) it saves creating an arbitrary instance of bird (what if something is counting hwo many birds have been created)

    2) What if Bird constructor took an argument which was tested in the constructor body? Then
    calling:

    Parrot.prototype = new Bird();
    

    could then cause a null pointer

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This may be a silly question about inheritance, but it does not make much
I know that I could do a simple prototypal inheritance in JavaScript like this:
I've been trying to learn more about private inheritance and decided to create a
I am reading this one JS book that talks about inheritance and I am
Hi I'm new in Javascript OO and want to know more about about inheritance.
In his sitepoint article about javascript inheritance , Harry Fuecks explains a way of
In the section about inheritance in the MDN article Introduction to Object Oriented Javascript
I've been learning more about javascript's prototypal inheritance. I know there is a somewhat
This may be a silly question but I want the exact idea about inheritance
I'm using Resig's Simple JavaScript Inheritance to create my classes. The only thing I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.