Am trying the following
Input:
myarray1=['Tag A','Tag B','Tag C']
myarray2=['Tag B','Tag C']
myarray3=['Tag A','Tag D']
Output:
outputArray=['Tag A','Tag B','Tag C','Tag D']
The output array should conatin the unique values from the input arrays.
Am trying this in typescript but not able to find the unique values from input array. Any suggestions how to achieve this in optimal way