Interesting javascript Array definition method

Source: Internet
Author: User
Tags array definition javascript array

Copy codeThe Code is as follows:
Var Person = new Array ();
Person [0] = 120; // defines a Person's weight of 120
Person [1] = 21; // defines the Person's age, 21 years old
Document. write ("Weight =" + Person [0] + "age =" + Person [1]); // output the weight and age of the Person


Another interesting way to define arrays:
Copy codeThe Code is as follows:
Var Person = new Array ();
Person ["weight"] = 50;
Person ["age"] = 40;
Document. write ("weight =" + Person ["weight"] + "age =" + Person ["age"]);

The above method is called "Join array" and indexes the array by a specific value. In fact, a numeric array can be treated as a special case of an associated array.

Using an associated array instead of a numeric array means that we can reference each element by its name rather than a subscript number, which greatly improves the readability of the script.

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.