JSFiddle - React, Tailwind, and code Playground

by zlojnaxa

HTML

<div>
	<div>тут текст<div>тут текст</div></div><p>тут еще текст</p> <p><p>тут еще текст</p>тут еще текст</p> ЦЕЛЕВОЙ ТЕКСТ
</div>

JavaScript

let DIV = document.getElementsByTagName('div')[0];
let copy = `<b>${DIV.lastChild.textContent}<b>`;
DIV.lastChild.textContent = '';
DIV.innerHTML += copy;