|
  
null
Format: null
Arguments: None
Returns: null
Description: null is a special value indicating no
value or an empty list. For example, the expression () will
return null.
Examples: null+1 = 1
null*1 = 0
null==0 = false
null<-100 = true
See Also: true, false
|