| Applying science to business management |
  
New
Format: new x()
Arguments: [any] x() Object constructor function
Returns: [any] An object initialized by x()
Description: This operator creates a new object by
calling the constructor x() and returning the result as an
object.
Examples: x:=new Object() = creates
an object named x
x.height=3 = creates the
property height and sets it equal to 3
x.height = 3
See Also: Property
|