I am trying to create an array in jQuery, which is filled through a loop.
count = jQuery('#count_images').val();
With the above code I get an integer value (such as 5, for example). What I would like to know, is how I can do something like this in jQuery:
int arrLength = count;
string[] arr1 = new string[arrLength];
int i = 0;
for (i = 0; i < arr1.Length; i++){
arr1[i] = i;
}
So in the end my array for example 5 would look like this: [1,2,3,4,5].