Вытащить только текст из элемента javascript

function extractContent(html) {

    return (new DOMParser).parseFromString(html, "text/html") . 
        documentElement . textContent;

}
Fantastic Flamingo