Question
Create global array function
I want to create a variable array (not array class) to store
numbers. Here's what I'm hoping for:
_global.CrtElement= 0;
_global.BackStepArray = Array();
then later on I will assign a value to the first element:
BackStepArray[CrtElement] = 4
I don't want to use named arrays unless I have to. Can this be done?
_global.CrtElement= 0;
_global.BackStepArray = Array();
then later on I will assign a value to the first element:
BackStepArray[CrtElement] = 4
I don't want to use named arrays unless I have to. Can this be done?