{"ScriptPreparationCode":"let el = document.getElementById(\u0022target\u0022);\r\nfor(i=0; i\u003C10; i\u002B\u002B) {\r\n\tel.innerHTML \u002B= \u0022\u003Cspan\u003EText\u003C/span\u003E\u0022\r\n}","TestCases":[{"Name":"innerHTML","Code":"let el = document.getElementById(\u0022target\u0022);\r\nel.innerHTML = \u0022Some ordinary text\u0022","IsDeferred":false},{"Name":"textContent","Code":"let el = document.getElementById(\u0022target\u0022);\r\nel.textContent = \u0022Some ordinary text\u0022","IsDeferred":false},{"Name":"replaceChildren","Code":"let el = document.getElementById(\u0022target\u0022);\r\nlet txt = document.createTextNode(\u0022Some ordinary text\u0022)\r\nel.replaceChildren(txt);","IsDeferred":false},{"Name":"remove \u0026 append","Code":"let el = document.getElementById(\u0022target\u0022);\r\n while (el.firstChild) {\r\n el.removeChild(el.firstChild);\r\n }\r\nlet txt = document.createTextNode(\u0022Some ordinary text\u0022)\r\nel.appendChild(txt);","IsDeferred":false}]}