In 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 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 This is the end of this article about the details of overriding prototype methods in You may also be interested in:
|
<<: XHTML Getting Started Tutorial: Form Tags
>>: Solve the error during connect exception in Docker
Preface We all know that the QR codes in official...
Table of contents Install Docker on CentOS 8 1. U...
I didn't use MySQL very often before, and I w...
MySQL 8.0.18 stable version (GA) was officially r...
The MySQL version used in this example is mysql-8...
Table of contents 1. Installation 2. There is no ...
Optimizing large amounts of database data is a hu...
1. What is HTML markup language? HTML is a markup...
Table of contents 1. Responsive principle foundat...
Table of contents Preface environment Install Cre...
Table of contents Background 1. Thought Analysis ...
A dynamic clock demo based on Canvas is provided ...
Table of contents Usage scenarios Solution 1. Use...
What is load balancing? When a domain name points...
Table of contents 1. Core commands 2. Common comm...