Remova as tags HTML em JavaScript

let strippedString = originalString.replace(/(<([^>]+)>)/gi, "");
Vast Vicuña