JSFiddle - React, Tailwind, and code Playground

JavaScript

var txt="abc";

txt+=new Array(10).join(" ");

txt+="xyz";

document.write(txt);

document.write("<br>");

document.write("<pre>"+txt+"</pre>");