My challenge involves working with two arrays:
firstArray= [{id: 1, name:'firstValue1'}, {id:2, name:'firstValue2'}]
secondArray= [{ "num": 1, "fullName": SecondValue1 , id:1}]
I need to display the data in the following format:
firstValue1 -------->> SecondValue1
firstValue2 -------->>
How can I integrate these two arrays into [(ngModel)], input, or select box?
Thank you for your time and assistance!