| Applying science to business management |
  
Delete
Format: delete x.y
Arguments: (object) x Object name
(node) y Property name
Returns: null
Description: This operator deletes the property named y
from the object named x.
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
delete x.height = deletes the
property height
x.height = null
See Also: New, Property
|