The object type of JavaScript introduces _javascript skills

Source: Internet
Author: User

There are two ways to create an instance of an object. The first is to use the new operator followed by the object constructor, as follows:

Copy Code code as follows:

var person = new Object ();
Person.name = "ZXJ";
Person.age = 25;

Another way is to use an object literal notation. Object literals are a shorthand form of object definitions to simplify the process of creating objects that create a large number of properties. The code looks like this:

Copy Code code as follows:

Object literal Amount
var person = {
Name: "Zxj",
Age:25
}

Object constructors are not actually invoked when objects are defined through object literals.

In general, the use of point notation when accessing object properties, but in JavaScript you can also use the square brackets notation to access the object's properties. When you use the bracket syntax, you should place the property you want to access in square brackets as a string, as follows:

Copy Code code as follows:

Alert (person["name"])//ZXJ
Alert (person.name)//ZXJ

The functionality is no different, but the main advantage of the bracket syntax is that you can access the property through a variable:

Copy Code code as follows:

var propertyname= "name";
Alert (Person[propertyname]); Zxj

You can also use square brackets notation if the property name contains characters that cause syntax errors, or if the property name uses a keyword or reserved word, for example:

Copy Code code as follows:

person[' name ' = ' ZXJ ';

In general, point notation is recommended unless you must use square brackets notation.

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.