Js declares an array and adds a simple example of object variables to the array.

Source: Internet
Author: User
The following small series will bring you a simple example of js declaration array and adding object variables to the array. I think this is quite good. Now I will share it with you and give you a reference. Let's take a look at the four definition methods of arrays.

Use constructors:

Var a = new Array ();
Var B = new Array (10 );
Var c = new Array ("first", "second", "third ");

Or the number of arrays directly:

Var d = ["first", "second", "third"];

Extension:

Function ObjStory (id, biaoti, author, type) // declares the object {this. ID = id; this. biaoti = biaoti; this. author = author; this. type = type;} var arr = new Array (); // declared Array, used to store the title information var writer = new ObjStory (11, 'look at the Sea ', 'Li bold ', 'literary class'); // declare the object arr [0] = writer; // Add an object to the set

Another method:

Var Array = [];

Array. push (new ObjStory (12, 'Let's watch the hai', 'Li bold ', 'literature and art class '));

Array. push (new ObjStory (14, 'everybody goes to heaven ', 'Li xiaodan', 'literature and art class '));

The above js declaration array and a simple example of adding object variables to the array are all the content shared by xiaobian. I hope to give you a reference and support for PHP.

For more articles about js declaration arrays and simple examples of adding object variables to arrays, refer to PHP!

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.