ArrayNew
Method Signature
ArrayNew()Arguments
Examples
Create the One dimensional array
newArray = arrayNew( 1 );
someArray =
// Transpiler workaround for BIF return type
(( arg1, arg2, arg3, arg4 ) => {
arraySet( arg1, arg2, arg3, arg4 );
return true;
})( newArray, 1, 4, "All is well" );
writeOutput( JSONSerialize( newArray ) );
Create the Two dimensional array
Create unsynchronized array
Create an array using implicit notation
Create an array with data type
Additional Examples
Related
Last updated
Was this helpful?
