Entfernen Sie die HTML -Tags in JavaScript

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