objNull: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(add. classification)
No edit summary
Line 27: Line 27:
<!-- Note Section END -->
<!-- Note Section END -->
</dl>
</dl>
Array1 = [objNull];
Array1 = Array1 - [objNull];
Array1 == [];
objNull is equal to itself in this situation.


<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>

Revision as of 08:50, 16 March 2010

Hover & click on the images for description

Description

Description:
A non-existing Object. This value is not equal to anything, including itself.
Groups:
Uncategorised

Syntax

Syntax:
Object = objNull
Return Value:
Object

Examples

Examples:
Example needed

Additional Information

See also:
See also needed

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

Array1 = [objNull]; Array1 = Array1 - [objNull]; Array1 == [];

objNull is equal to itself in this situation.

Bottom Section