I usually convert the array into a symbol which will automagically purge all duplicates, then convert back into an array: e.g. let array = [...data]; let noDuplicates = [...Symbol(array)]; jeremyashcraft
I usually convert the array into a symbol which will automagically purge all duplicates, then convert back into an array: e.g. let array = [...data]; let noDuplicates = [...Symbol(array)];
osmmm thanx a lot I got what I exactly need... devoper_
osmmm thanx a lot I got what I exactly need...