Null

Represents an empty or uninitialized object reference

Keywords

Parameters & Returns

Parameters

This function takes no parameters.

Returns

Object

Quick Summary

Represents an empty or uninitialized object reference

Technical Exegesis...

Represents an empty or uninitialized object reference. Predefined constant indicating no object is assigned. Used to initialize object variables, test if an object exists, or clear object references. Objects become Null after being Removed. Attempting to access fields or methods of a Null object will cause an error.

Example

Example.bam
; No example implemented yet