JSFiddle - React, Tailwind, and code Playground
by dance2die
JavaScript
function strip(html){
var doc = new DOMParser().parseFromString(html, 'text/html');
return doc.body.textContent || "";
}
strip("<html><head><title>test!! tittl!</title></head><body>this is a body</body></html>")