sizeof

Description

Returns the size of the object.

Syntax

number = sizeof(object)

ParameterDescription
object Object to be sized. The return value's meaning will vary depending on this object's type.

Return Value

Returns the size of the object. For strings, this is the string length; for tables, the number of non-null objects in the table. Null values are zero size.