ArrayRange
arrayRange( "1..5" )
arrayRange( "-10..5" )
arrayRange( 1, 500 )
Method Signature
ArrayRange(from=[any], to=[numeric])Arguments
Argument
Type
Required
Description
Default
Examples
Create an array of sequential numbers using the string syntax.
arr = arrayRange( "2..5" );
writeOutput( "This array has " & arrayLen( arr ) & " elements." );
Create an array of sequential numbers using the string syntax.
Related
Last updated
Was this helpful?
