So I hava array Links
and array Params
with same langth N
So what I need is to create an object where for each link
from Links
I will be able to see
param
from Params
And than for example to be abble to call something like
for each( item in object)
if (item.param == "some value") {
// some code
} else...
How to do such thing (Code exaMple, please)