Details on overriding prototype methods in JavaScript instance objects

Details on overriding prototype methods in JavaScript instance objects

In JavaScript , we can usually simply define a class like the following code:

var sample = function() {
    // constructor code here 
}

sample.prototype.func1 = function() {
    // func1 code here
}

sample.prototype.func2 = function() {
    // func2 code here
}

/* more sample prototype functions here... */

Then use the following code to instantiate and access the prototype method:

var sampleInstance = new sample();
sampleInstance.func1();
sampleInstance.func2();
// call more sample object prototype functions


But if we want to rewrite one of the prototype methods without destroying the original sample object, how to achieve it? The simplest way is to build another class to inherit sample , and then rewrite the base class method in the prototype method of the inherited class, as follows:

var subSample = function() {
    // constructor code here
}

// inherit from sample
subSample.prototype = new sample();
subSample.prototype.fun1 = function() {
    // overwrite the sample's func1
}

However, if you do not build an inherited class and want to rewrite the prototype method, you can directly use the following code:

var sampleInstance = new sample();
sampleInstance.func1 = function() {
    sample.prototype.fun1.call(this); // call sample's func1
    // sampleInstance.func1 code here
}


We redefined the func1 method of sample instance object, accessed its prototype method func1 , and then added some additional code to it. In this way, we extend the prototype method of sample without creating a derived class or destroying the prototype method of sample .

This is the end of this article about the details of overriding prototype methods in JavaScript instance objects. For more information about overriding prototype methods in JavaScript instance objects, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • JavaScript adds prototype method implementation for built-in objects
  • Take you to a thorough understanding of the prototype object in JavaScript
  • Comprehensive analysis of prototypes, prototype objects, and prototype chains in js
  • Things to note when using prototype objects in js

<<:  XHTML Getting Started Tutorial: Form Tags

>>:  Solve the error during connect exception in Docker

Recommend

The implementation process of long pressing to identify QR code in WeChat applet

Preface We all know that the QR codes in official...

Docker deploys Mysql, .Net6, Sqlserver and other containers

Table of contents Install Docker on CentOS 8 1. U...

Multiple ways to calculate age by birthday in MySQL

I didn't use MySQL very often before, and I w...

MySQL 8.0.18 stable version released! Hash Join is here as expected

MySQL 8.0.18 stable version (GA) was officially r...

How to use axios request in Vue project

Table of contents 1. Installation 2. There is no ...

HTML Learning Notes--Detailed Explanation of HTML Syntax (Must Read)

1. What is HTML markup language? HTML is a markup...

Detailed explanation of VUE responsiveness principle

Table of contents 1. Responsive principle foundat...

Docker installation and configuration steps for MySQL

Table of contents Preface environment Install Cre...

HTML+CSS+JS to implement the Don't Step on the Whiteboard game

Table of contents Background 1. Thought Analysis ...

JS+Canvas realizes dynamic clock effect

A dynamic clock demo based on Canvas is provided ...

Summary of 4 solutions for returning values ​​on WeChat Mini Program pages

Table of contents Usage scenarios Solution 1. Use...

Implementation of Nginx load balancing/SSL configuration

What is load balancing? When a domain name points...

Linux checkup, understand your Linux status (network IO, disk, CPU, memory)

Table of contents 1. Core commands 2. Common comm...