Удалить теги HTML в JavaScript

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