Help using one array of data to select data from a second array.
I need to .... based on the names in one array , match to the same name in the second array , but pull different information from that same second array.... both arrays are [[]] ???
Help using one array of data to select data from a second array.
I need to .... based on the names in one array , match to the same name in the second array , but pull different information from that same second array.... both arrays are [[]] ???
For further actions, you may consider blocking this person and/or reporting abuse
Don’t miss the expert panel at PulumiUP 2025 on May 6. Learn how teams are evolving from infrastructure engineering to platform engineering—faster, more secure, and at scale.
Top comments (1)
If you’re using JavaScript have you tried a hashmap?
Array1.map(arr1 => Array2.map(arr2 => arr1[arr2.linked_element]))