# ArrayModule
Provides the sizeof function to get the number of elements in an array (object map).
## Functions
### sizeof
sizeof(array) -> intarray.array (object): The array (object map) whose elements to count.## Example
vs var arr = {}; arr["first"] = 10; arr["second"] = 20; printnl("Length:", sizeof(arr)); // Length: 2