JavaScript Object properties and array access

Source: Internet
Author: User

Access to JavaScript Object properties
If there is an object test:
var test = {
"A": 1,
"B": 2
};
There are two ways to directly access the value of the property A of the object test:

1.TEST.A;

2.test["a"]; (Note that the quotation marks are used here.)



However, if you use the For/in statement to access the object's property values, you must use the "[]" operator:
For (m in test) {
Alert (test[m]);
alert (TEST.M); The undefined will pop up here.
}
Why pinch? Because the For/in loop assigns the object's property name as a string to the variable m.



The array of JavaScript is nothing more than a special object, so:
var arr = new Array ();
Arr[0] = 10;
Arr[' a '] = 20;

For (m in arr) {
Alert (m); Eject 0 and a
Alert (arr[m]); Eject 10 and 20
}

JavaScript Object properties and array access

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.