Remove Duplicates from String
Example heading with h2 size
Example heading with h3 size
Following is sample javaScript code.
let str="pppaaaggaaappplllllaaapppgg";
let res="";
for(let i of str){
if(res.indexOf(i)==-1){
res=res+i;
}
}
console.log(res);