JSFiddle - React, Tailwind, and code Playground
HTML
<div id="output"></div>
JavaScript
function outputer(output, add){
//var output = "hey"
output += add
return output
}
var naughty_word = "bullshit"
var user_input = "this is some bullshit my dude"
//var final = outputer("hey", " you")
//final += " what are you doing"
//document.getElementById("output").innerHTML = final
//outputer("hello", " all")