利用ES6的Set方法

function unique(str) {
let arr = str.split("");
let newArr = [...new Set(arr)];
return newArr.join("");
}