JSFiddle - React, Tailwind, and code Playground
by zlojnaxa
HTML
<button id="damagerinf">Click here</button>
JavaScript
let button = document.getElementById('damagerinf'), x = 0, y = 0;
button.addEventListener('click',()=> {
x && y ? (alert(x + y), x = y = 0) :
x ? y = ~~(Math.random() * (6 - 1) + 1) :
x = ~~(Math.random() * (6 - 1) + 1);
});