Strip HTML Tags in JavaScript

Chris Coyier on
let strippedString = originalString.replace(/(<([^>]+)>)/gi, "");