В php есть
http://php.net//manual/ru/function.array-unique.php.
В js будет что то в духе
Array.prototype.unique = function() {
var unique = [];
for (var i = 0; i < this.length; i++) {
if (unique.indexOf(this[i]) == -1) {
unique.push(this[i]);
}
}
return unique;
};