Suppose we have the following:
in data I have the values title, first names, last name
and I have an array with the following elements
person [0]. title, person [0] .names, person [0]. lastname
I use a for as follows:
for (var a in data) {
}
How can I use the value from to to refer to the array element whose name is contained in to
Thank you very much, I appreciate your help in advance