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]
.
This is more about javascript and not jquery. Check out my sample and this jsFiddle Demonstration
var arrLength = 5;
var arr1 = [];
var i = 0;
for (i = 0; i != arrLength; i++){
arr1.push(i)
}
alert(arr1.length)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With