JSFiddle - React, Tailwind, and code Playground
by maharajan a
JavaScript
for (let i = 0; i < 2; i++) {
const button = document.createElement("button");
button.innerText = "Button " + i;
button.onclick = function () {
alert(i);
};
document.body.appendChild(button);
}