Hi have below structure for user interface -
export interface IUser {
EMPLOYEE_NAME :string,
EMPLOYEE_PID : string
}
At a point in a code , I am receiving array of IUser - IUser[] with multiple employeenames and their pids.
Eg.
{EMPLOYEE_NAME:'XYZ',EMPLOYEE_PID :'A123'},
{EMPLOYEE_NAME:'ABC',EMPLOYEE_PID :'B123'},
I want to fetch comma seperated PIDs - 'A123','B123'
I tried with map and foreach but not able to loop properly as its interface.