JSFiddle - React, Tailwind, and code Playground
HTML
<div id="demo">
</div>
JavaScript
(function abc() {
var x = "To subscribe to news about the Node.js Foundation please signup below.";
var y = x.slice(0, 35);
var z = x.slice(36);
var a = y + "<br/>" + z;
var d = document.getElementById('demo');
d.innerHTML = a;
})();