Remove Duplicates from JavaScript Array - Stack Overflow
This seems like such a simple need but I've spent an inordinate amount of time trying to do this to no avail. I've looked at other questions on SO and I haven't found what I need. I have a very sim... ... function uniq(a) { var seen = {}; return a.filter(...