Javascript String unique()
unique()
String.prototype.unique = function() { var temp = {};//from w w w . j av a 2s .c o m this.split('').forEach(elem => { temp[elem] = 0; }); return Object.keys(temp).join(''); };