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 9082021
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T20:27:25+00:00 2026-06-16T20:27:25+00:00

I’m trying to get a better understanding of OOP in Javascript. Can someone please

  • 0

I’m trying to get a better understanding of OOP in Javascript. Can someone please explain how the create method is being used in the example below and an alternative? I’ve looked it up on the web and reviewed several posts on SO and still don’t have a solid grasp of what’s happening in the code below. I’ve provided comments to illustrate my understanding. Please correct me where I’m wrong.

This example is used to override a method from a base class:

// Defines an Employee Class
function Employee() {}

// Adds a PayEmployee method to Employee
Employee.prototype.PayEmployee = function() {
    alert('Hi there!');
}

// Defines a Consultant Class and
// Invokes the Employee Class and assigns Consultant to 'this' -- not sure and not sure why
// I believe this is a way to inherit from Employee?
function Consultant() {
    Employee.call(this);
}

// Assigns the Consultant Class its own Constructor for future use -- not sure
Consultant.prototype.constructor = Consultant.create;

// Overrides the PayEmployee method for future use of Consultant Class
Consultant.prototype.PayEmployee = function() {
    alert('Pay Consultant');
}
  • 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-06-16T20:27:26+00:00Added an answer on June 16, 2026 at 8:27 pm

    This code:

    function Consultant() {
        Employee.call(this);
    }
    

    Is invoking the Employee constructor when the Consultant constructor is invoked (i.e., when an instance of Consultant is created). If the Employee constructor were doing any sort of initialization, then it would be important that it be called when the Consultant “subtype” was created.

    This code:

    Consultant.prototype.constructor = Consultant.create;
    

    is a bit of mystery. It implies that there is a function named create which is a property of the Consultant function object. However, in the code sample you posted, there is no such property. In effect, this line is assigning undefined to the Consultant constructor.

    Your question doesn’t ask, but just FYI, I think what you probably want instead of that line with the create function, is this:

    Consultant.prototype = new Employee();
    Consultant.prototype.constructor = Consultant;
    

    That’s the prototypal inheritance pattern. It is certainly not the only or necessarily best approach, but I like it.

    Update

    If Employee takes an argument, you can handle that like so:

    // Employee constructor
    function Employee(name) {
        // Note, name might be undefined. Don't assume otherwise.
        this.name = name;
    }
    
    // Consultant constructor
    function Consultant(name) {
        Employee.call(this, name);
    }
    
    // Consultant inherits all of the Employee object's methods.
    Consultant.prototype = new Employee();
    Consultant.prototype.constructor = Consultant;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to convert HTML to plain text. I get many &\#8217; &\#8220; etc.
Basically, what I'm trying to create is a page of div tags, each has
I am trying to render a haml file in a javascript response like so:
I'm trying to create an if statement in PHP that prevents a single post
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
I am trying to find ID3V2 tags from MP3 file using jid3lib in Java.
I am trying to understand how to use SyndicationItem to display feed which is
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have a small JavaScript validation script that validates inputs based on Regex. I
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this

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.