The distinguished data type of the object class instance in JS Create object

Source: Internet
Author: User

A class is a specific subdivision of an object, and an instance is a specific thing in a class.

Basic data types and reference data types

Basic data type: numble string undefined null

Reference data types: objects and functions

The object data type is also subdivided into: object Class (Objects) array class (array) regular Class (REG). )

Characteristics of basic data types: operation by value

Characteristics of reference data types: first open a space, the browser assigns it an address, then saves the content in space, and finally assigns the address to the variable.

==========================================

How objects are created

1. Literal type

var obj={}

Cases:

var person={

Name= "Li Xiao Jing",

Age=24

};

How instances are created

var obj=new Object ();

Obj.name= "LXJ";

obj.age=24;

}

The distinguished data type of the object class instance in JS Create object

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.