JavaScript object-oriented class inheritance case explanation

JavaScript object-oriented class inheritance case explanation

1. Object-oriented class inheritance

In the above chapters, we have seen that JavaScript's object model is based on prototype implementation. Its characteristic is simplicity, but its disadvantage is that it is more difficult to understand than the traditional class-instance model. The biggest disadvantage is that the implementation of inheritance requires writing a lot of code and correctly implementing the prototype chain.

Is there a simpler way to write it? have!

insert image description here

Let's first review how to implement Student using functions:

    function Student(name) {
        this.name = name;
    }

    // Now we need to add a method to this Student Student.prototype.hello = function () {
        alert('Hello, ' + this.name + '!');
    }
    
    Student.prototype.hello.apply(new Student("Xiao Ming")); 

insert image description here

If we use the new class keyword to write Student, we can write it like this:

insert image description here

Finally, create a Student object with the same code as in the previous section:

insert image description here

Class inheritance

insert image description here

This is the end of this article about JavaScript object-oriented class inheritance case. For more relevant JavaScript object-oriented class inheritance content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • js learning notes: class, super and extends keywords
  • JS quickly master ES6 class usage
  • Two ways to write JS tab plugins (jQuery and class)
  • Detailed explanation of adding and deleting class names using JS
  • Class in front-end JavaScript

<<:  MySQL 8.0.17 installation and simple configuration tutorial under macOS

>>:  Detailed steps for setting up the network for the virtual machine that comes with win10 (graphic tutorial)

Recommend

Alibaba Cloud Server Tomcat cannot be accessed

Table of contents 1. Introduction 2. Solution 2.1...

Detailed explanation of the use of MySQL paradigm

1. Paradigm The English name of the paradigm is N...

Detailed explanation of docker nginx container startup and mounting to local

First, the structure inside the nginx container: ...

How to configure path alias for react scaffolding

The react version when writing this article is 16...

The whole process of realizing website internationalization using Vite2 and Vue3

Table of contents Preface Install vue-i18n Config...

js method to delete a field in an object

This article mainly introduces the implementation...

Detailed example of sorting function field() in MySQL

Preface In our daily development process, sorting...

10 skills that make front-end developers worth millions

The skills that front-end developers need to mast...

Centos6.9 installation Mysql5.7.18 step record

Installation sequence rpm -ivh mysql-community-co...

MySql Installer 8.0.18 Visual Installation Tutorial with Pictures and Text

Table of contents 1. MySQL 8.0.18 installation 2....

Windows DNS server exposed "worm-level" vulnerability, has existed for 17 years

Vulnerability Introduction The SigRed vulnerabili...

JS implements WeChat's "shit bombing" function

Hello everyone, I am Qiufeng. Recently, WeChat ha...

HTML Tutorial: Collection of commonly used HTML tags (4)

These introduced HTML tags do not necessarily ful...

Example code for implementing dynamic skinning with vue+element

Sometimes the theme of a project cannot satisfy e...