Creates an array and initializes it with values x1 to xn.
MakeArray( x1, ..., xN )
x1 | The value that initialises the first array element |
---|---|
xn | The value that initialises the last array element |
If there were no parameters passed to the MakeArray function, this call will result in an empty, untyped value.
New array with initialized values according to the input values.
//creates an new array MakeArray(1,4,2,4,3,2,1,7) //[1,4,2,4,3,2,1,7]
//creates an new array and stores it into a new array variable NumberVar array variable := MakeArray(1,4,2,4,3,2,1,7)