JSFiddle - React, Tailwind, and code Playground

by parksd

JavaScript

[...Array(10).keys()].forEach(index => {
  const button = document.createElement("button");
  button.innerText = index;
  button.addEventListener("click", () => {
    localStorage.setItem("aaa", index);
  });
  document.body.appendChild(button);
});