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 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 512k
  • Answers 512k
  • 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 Answer found. It didn't return anything since the EntityContainer element… May 16, 2026 at 5:30 pm
  • Editorial Team
    Editorial Team added an answer When you create a database use only lower case letters… May 16, 2026 at 5:30 pm
  • Editorial Team
    Editorial Team added an answer Given the filename patterns in your example, this will do… May 16, 2026 at 5:30 pm

Trending Tags

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

Top Members

Related Questions

I was wondering if there was a way to simulate a plug and play
I was wondering, in java, is it possible to in anyway, simulate pass by
I am wondering if anyone has come across a way to generate tones in
Wondering what would be the most efficient way to do the following. Game play.
Wondering if I'm going about this the right way or not. I have 3
Wondering if anyone has written or come across a good way to log to
Previously, when I needed to store a number of related variables, I'd create a
We need to simulate an unstable network connection to try to debug some connectivity
I need some actionscript code to simulate the dragging and dropping of a Sprite,
I'm wondering how the concurrency in a web application actually works. Ive read several

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.