| Applying science to business management |
  
Object Literal
Format: { p1:x, p2:y ,... }
Arguments: (node) p1, p2 Property name
[any] x, y Property value
Returns: [any] Object with all defined properties
Description: This operator is used to create objects
with a literal expression.
Examples: x:={height:3,width:5}
= creates the object x with two properties
x.height = 3
x.width = 5
See Also: New, Property
|