| Table Of Contents | Index |

Example:In this example,
var A Loop 5 A[LoopIndex] = LoopIndex EndLoop ArrayInsert(A,3,1) A[3] = 10Array A will be [1 2 10 3 4 5]
var A
Loop 5
A[LoopIndex] = LoopIndex
EndLoop
created an array of numbers 1 through 5. In the next part of the example,
ArrayInsert(A,3,1) A[3] = 10the number 10 was inserted into position number 3 of the array A.
| Category: | Array |
|---|

| Table Of Contents | Index |
|
