What I would like to be able to send to call some arrangements and go through each of them in Javascript in a dynamic way.
For example:
var idarray=[1,5,8]
var arreglo1=[23,34,56,45,534]
var arreglo5=[34,34,12,65]
var arreglo8=[34.23.65.87]
I have "n" number of arrangements that have the same name but only change the number
fix 1
I have these numbers in another array, so what I want is to cycle through each cycle to call each one of the arrangements and go through its elements.
Thanks