I want to remove html tag ,double quotation and single quotation from my string

i want to remove html tag ,double quotation and single quotation from my string. how can i do that

i’m using this code.removing the tag but the quotes are not removing.
let quotecontent = getResponse.replace(/(<([^>]+)>)/ig,"");

Please help me anyone.