"JavaScript" Analysis of how JavaScript objects add properties and methods

Source: Internet
Author: User

The most straightforward way to add properties and methods to a JavaScript class is to define properties and methods in the class. JavaScript is a weak language that can be added with prototype in addition to direct definitions.

Here are four ways to add properties and methods from outside to JavaScript, first defining a class

function MyClass () {}

1, adding a property using the class name

Myclass.prototype.myname= "Wu 01";

2, adding a method using the class name

myclass.prototype.myfunc=function() {alert ("Wu 02")}

You can also define a method before you call the method.

function myfun () {alert ("WU")}myclass.prototype.myfunc=myfun;

3, adding properties using object name

var myclass=New  MyClass (); Myclass.myname= "Wu 04";

4, adding a method using the object name

var myclass=New  MyClass (); Myclass.func=function() {}

You can also define a method before you call the method.

function myfun () {alert ("WU")}myclass=myfun;

"JavaScript" Analysis of how JavaScript objects add properties and methods

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.