JSFiddle - React, Tailwind, and code Playground
HTML
<textarea>
Bunch of random gibberish here
</textarea>
<br>
<input type="button" value="Clear">
JavaScript
$(document).ready(function() {
$("input").click(function() {
$("textarea")[0].innerHTML = '';
});
});