Search
List Class
See Also
 






Represents an array of arbitrary objects.

Namespace: MindFusion.Common.Collections
File: List.js

 Syntax

JavaScript  Copy Code

// class
List.prototype = {}

 Example

The following code creates a List with products:

JavaScript  Copy Code

var product1 = new Object();
product1.title = "Ford";
product1.price = 25345;

var product2 = new Object();
product1.title = "BMW";
product1.price = 75300;
......
.....

List products = new List([product1, product2, ...]);

 Inheritance Hierarchy

 See Also