Hello Everyone,
I am really desperate for any help. I have two arrays, before adding to the second array, I need to loop through both arrays and make sure the value is not already in the list.
Here's what I have so far:
subset is the array that I am constantly adding to, from the firms array. It's in a function that's called about 4 times. I'm just really at a loss here, any help would be greatly appreciated.
for(i = subset.length + 1; i < firms.length; i++ ) {
subset[j++] = firms;
i++;
}
Thanks in advance!!
Lisa