Property methods of custom objects in javascript _ javascript tips-js tutorial

Source: Internet
Author: User
This article introduces how to customize object attributes in javascript. If you need it, refer to the following link array:

The Code is as follows:


Script
Var test = new Object ();
Test ["a"] = 1;
Test ["B"] = "string ";
Test ["c"] = false;
Alert (test ["a"]);
Script


Run the above Code and 1 is displayed.
In javascript, methods and attributes are treated as values.

The Code is as follows:


Script
Var test = {
A: 1,
B: "string ",
C: false,
D: function show () {alert ("OK ");
}
};
Var show = test. d;
Show ();
Script


Implement the above Code and display OK. The first is to define an object test, which has four attributes: a, B, c, and d. The fourth is a method, but it is still treated as a value.

Var show = test. d;
Assign d to show. In this case, show is a function. Run show.
Result Display

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.