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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T14:31:46+00:00 2026-05-13T14:31:46+00:00

I am wondering how to simulate Class Inheritance in JavaScript. I know class doesn’t

  • 0

I am wondering how to simulate Class Inheritance in JavaScript. I know class doesn’t apply to JavaScript, the way we use is Functions to create objects and do the inheritance things through Prototype object.

For example, how do you convert this structure into JavaScript :

public class Mankind {
    public string name;
    public string lastname;
}

public class Person: Mankind {
    public void Run(string fromWhat) {
        //write the run logic
    }
}

What is the equivalent of this piece of code in JavaScript.

Edit:

I’ve also found another link where Douglas Crockford explains different inheritance models as CMS does: Classical Inheritance in JavaScript.

Hope it helps others as well.

  • 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-13T14:31:46+00:00Added an answer on May 13, 2026 at 2:31 pm

    There are plenty ways of implementing inheritance and behavior reuse in JavaScript, perhaps the way that is more similar to your class-based OOP example would be the pseudo-classical inheritance:

    function Mankind (name, lastname) {
      this.name = name;
      this.lastname = lastname;
    }
    
    function Person (name, lastname) {
      this.name = name;
      this.lastname = lastname;
    
      this.run = function() {
        // run logic
      };
    }
    Person.prototype = new Mankind();
    Person.prototype.walk = function () {
      // walk logic
    };
    

    The difference between run and walk is that the first will exist on every object instance of Person, and the second method, walk, will exist only in Person.prototype and will be accessed through the prototype chain.

    In this pattern you see a bit of code duplication, we need the logic to initialize the fields also on the inherited constructor, another pattern that avoids this, is Constructor Function application:

    function Mankind (name, lastname) {
      this.name = name;
      this.lastname = lastname;
    }
    
    function Person (name, lastname) {
      Mankind.apply(this, arguments);
      this.run = function() {
        // run logic
      };
    }
    

    More info:

    • How to inherit from a class in JavaScript (various examples)
    • Inheritance Patterns in JavaScript (article)
    • Classical Inheritance in JavaScript (article)
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 315k
  • Answers 315k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer The non-static block: { // Do Something... } Gets called… May 13, 2026 at 11:21 pm
  • Editorial Team
    Editorial Team added an answer <component id="repository" service="MyNamespace.IRepository`1, MyAssembly" type="MyNamespace.Repository`1, MyAssembly"/> May 13, 2026 at 11:21 pm
  • Editorial Team
    Editorial Team added an answer 1) Create a list of indexes into the respective lists,… May 13, 2026 at 11:21 pm

Related Questions

I am wondering if anyone has come across a way to generate tones in
Hello stackoverflow community ! I am trying to figure out how to architect my
Our group is building a process modelling application that simulates an industrial process. The
I'm working on a fairly big open source RTS game engine ( Spring ).
My question is pretty straightforward: You are an executable file that outputs Access granted

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.