Strip HTML Tags in JavaScript

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