JSFiddle - React, Tailwind, and code Playground

by Anthony Astige

JavaScript

let ii = 1;
function counter() {
  return ii++;
}
console.log(`${counter()}, ${counter()}`);