length property
- @Since('3.6')
The length in elements of this Array
.
Implementation
@Since('3.6')
external int get length;
- @Since('3.6')
Sets the length in elements of this Array
.
Setting it smaller than the current length truncates this Array
, and
setting it larger adds empty slots, which requires T
to be nullable.
Implementation
@Since('3.6')
external set length(int newLength);