For example i have some data need to be push into a variable
var WhiteLists = profile.whiteList;
for(var i=0;i<WhiteLists.length;i++){
WhiteListRender.push('<div style="margin-bottom:20px;" class="temporayWhiteSingle"><span class="white-url-item" style="margin-bottom:10px;width: 600px;padding:5px;border-radius: 3px;background-color: #ffffff;border: solid 1px #cbcbcb;" ><span class="" >'+WhiteLists[i]+
'</span><span class="mobileCreatebtn sa-btn BackBtn2" style="padding: 5px;border-radius: 5px;border: solid 1px steelblue;position: relative;left: 75px;"><a class="white-url-delete"> Remove</a></span></div>');
}
As you see i tried to push the html tag and inline css as well, i thought it's going to return some data with html and css style but it actually read everything as string so my outcome became as the image show below:

WhiteListRender. As others say, if you usenode.innerHTML = ...or$(node).html(...), or even$(node).append(...), it should work. On the other hand, if you are using using JSX, then you need to remove the quotes.