{"ScriptPreparationCode":"const container = document.getElementById(\u0022container\u0022);\r\nconst paragraphs = [];\r\nfor (c of \u0022abcdefg\u0022) {\r\n const p = document.createElement(\u0022p\u0022);\r\n p.textContent = c;\r\n paragraphs.push(p);\r\n}","TestCases":[{"Name":"append with spread syntax","Code":"container.append(...paragraphs);","IsDeferred":false},{"Name":"for ... append","Code":"for (const p of paragraphs) {\r\n container.append(p);\r\n}","IsDeferred":false},{"Name":"for ... appendChild","Code":"for (const p of paragraphs) {\r\n container.appendChild(p);\r\n}","IsDeferred":false}]}