JSFiddle - React, Tailwind, and code Playground
by k_rma
HTML
<script type="text/javascript">
function Multiply(){
var x = +document.getElementById('num1').value;
var y = +(prompt("Vul een getal in"));
var resultDiv = document.getElementById('resultDiv');
resultDiv.value='';
for (i=1;i<=y;i++){
resultDiv.value += i + " x " + x + "\n";
}
}
</script>
<input type="text" id="num1" />
<input type="button" value="uitrekenen" onclick="Multiply()" />
<br/>
<textarea id="resultDiv"></textarea>
CSS
textarea {
min-height:300px;
}