The difference between an instance method and a class method in JavaScript

Source: Internet
Author: User

In JavaScript, a class has static and instance properties, as well as static and instance methods.

Class Property (static property): Direct access through the class, without the need to declare an instance of the class to access

class method (static method): Direct access through the class, without the need to declare an instance of the class to access

Instance properties (Dynamic properties): cannot be accessed directly through the class, and must be accessed by an instance of the class declaration

Instance method (Dynamic method): cannot be accessed directly through the class, and must be accessed by an instance of the class declaration

person = function () {

}

Persion.sex = "Woman"; Class properties

person.eat= function () {//class method

Alert ("Eat");

}

Person.prototype.age = 10; Instance Properties

Person.prototype.dance = function () {//instance method

Alert ("Dance");

}

var person = new person ();

person.age;//Instance Properties

Person.dance ();//Instance method

person.sex;//Static Properties

Person.eat ();//static method

The difference between an instance method and a class method in JavaScript

Related Article

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.