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

  • Home
  • SEARCH
  • 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 7754559
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T12:20:24+00:00 2026-06-01T12:20:24+00:00

I had some pseudoclasses that shared a large part of their initialization. I decided

  • 0

I had some pseudoclasses that shared a large part of their initialization. I decided to take this initialization out and create a base class, from which they’ll inherit.

function BaseClass(param1, param2) {
    ...
}

function SubClassA(param1) {
    ...
}

function SubClassB(param1) {
    ...
}

I want SubClass1 and SubClass2 to inherit from BaseClass in the following manner:

SubClassA(param1) constructor calls BaseClass(param1, "I am A.")

SubClassB(param1) constructor calls BaseClass(param1, "I am B.")

so BaseClass adds some properties to them. Then both subclasses do some initialization of their own.

Now I can’t just do SubClassA.prototype = new BaseClass(), because I want the super constructor to take parameters. How to do this elegantly?

  • 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-01T12:20:25+00:00Added an answer on June 1, 2026 at 12:20 pm
    function SubClassA(param1) {
        BaseClass.call(this, param1, "I Am A.");
    }
    
    function SubClassB(param1) {
        BaseClass.call(this, param1, "I Am B.");
    }
    

    When you do a new SubClassA(param1) or new SubClassB(param1) base constructor will be called with appropriate parameters.

    Also, there are other ways than SubClassA.prototype = new BaseClass() to define base class. You can check this question for some details. (Disclaimer: The question was asked by me.)

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

Sidebar

Related Questions

I had some issues with a different ODM yesterday so I decided to take
I had some code that produced a table, and worked perfectly. This is the
I had some code that looked like this: List<ListBoxItem> items = ( from String
I had some code that ran commands through Runtime.getRuntime.exec(String) , and it worked on
I had some decryption code (using wincrypt.h ) that lived within my FileReader.cpp class.
Assuming you had some kind of factory-created resource that would still belong to the
I had some good insight to an earlier post regarding this, but I have
I had some code that was failing to compile, which amounts to something like
I had some time and decided to implement a one time pad just for
I've had some experience with Java and Javascript and searching this forum has helped

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.